https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 266ac8ec00a6f75e2dc971ee3ebde12ee804d093 authored by James Graham on 12 April 2018, 14:20:58 UTC
Fix computing reftest_nodes_by_url.
Tip revision: 266ac8e
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