https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b98931ac1fbe042caf7f7072a8f993c4d60475af authored by Yutaka Hirano on 25 April 2018, 04:52:52 UTC
fix
Tip revision: b98931a
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