https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e79e440e2b25551d21149ef336ab06ea16c43fdc authored by Anne van Kesteren on 03 April 2018, 13:01:37 UTC
missed one
Tip revision: e79e440
refresh.py
def main(request, response):
    response.headers.set("Content-Type", "text/html")
    response.headers.set("Refresh", request.GET.first("input"))
    response.content = "<!doctype html>refresh.py\n"
back to top