https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 212e293791cbe0a530807138a1bd16d3109a5512 authored by David Storey on 24 March 2018, 01:19:41 UTC
Respond to feedback
Tip revision: 212e293
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