summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/support/refresh.py
blob: 797c7b9412d3425a38a0b1714a98953fd7e420a1 (plain)
1
2
3
4
def main(request, response):
    response.headers.set(b"Content-Type", b"text/html")
    response.headers.set(b"Refresh", request.GET.first(b"input"))
    response.content = u"<!doctype html>refresh.py\n"