summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/element-timing/resources/slow-image.py
blob: 10172fd35a85439413e4b1ef665b612d57f6e92a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;