https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5fa6216563363d483fad304302ea6a3a694c7c12 authored by Josh Matthews on 24 September 2019, 00:29:04 UTC
Add explicit commit to test for offscreen canvas with placeholder.
Tip revision: 5fa6216
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