https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a802b1049167b8449b0ceefae4d2ec353c2ae122 authored by Kenichi Ishibashi on 27 March 2018, 03:21:32 UTC
service_worker: Add tests for navigation timing
Tip revision: a802b10
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