summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/resources/http-refresh.py
blob: 161a34b6b506aaa501b88e9458d1e160c748e8c6 (plain)
1
2
3
4
5
from wptserve.utils import isomorphic_encode

def main(request, response):
    time = isomorphic_encode(request.url_parts.query) if request.url_parts.query else b'0'
    return 200, [(b'Refresh', time), (b'Content-Type', b"text/html")], b''