1
0
Fork 0
firefox/testing/web-platform/tests/element-timing/resources/slow-image.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
549 B
Python

import os.path
import time
from wptserve.utils import isomorphic_encode
def main(request, response):
name = request.GET.first(b"name")
sleepTime = float(request.GET.first(b"sleep")) / 1E3
time.sleep(sleepTime)
path = os.path.join(os.path.dirname(isomorphic_encode(__file__)), name)
body = open(path, u"rb").read()
response.headers.set(b"Content-Type", b"image")
response.headers.set(b"Content-Length", len(body))
response.headers.set(b"Cache-control", b"no-cache, must-revalidate")
response.content = body;