https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 511031aa125539d41ff9cd99f89907fd4a2bf906 authored by Luke Bjerring on 03 April 2018, 14:27:59 UTC
Throw IdlHarnessError outside try
Tip revision: 511031a
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