https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a7c6f918b6c42b7175b6f70334ba834b7dc583c4 authored by kaixinjxq on 15 March 2018, 02:53:31 UTC
Changed the test name.
Tip revision: a7c6f91
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