https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 114e3caed2b35af030e630afe3e3a691d76ef413 authored by Mike Pennisi on 10 December 2018, 20:43:05 UTC
Trigger CI
Tip revision: 114e3ca
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