https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ac7299be20bc274ef25b565534259f90f45df72f authored by Maja Frydrychowicz on 11 April 2018, 09:34:03 UTC
Disable test_pause_dblclick
Tip revision: ac7299b
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