https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 37c5bea47ddc518b83a755f619ef4d77809ff881 authored by Philip Jägenstedt on 29 March 2018, 09:56:53 UTC
Document useful arguments for `wpt run chrome`
Tip revision: 37c5bea
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