https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 31915549b84b31f234ef044df12110861846b010 authored by Chris Nardi on 13 March 2018, 21:27:03 UTC
Correct serialization of overflow
Tip revision: 3191554
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