https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f6787be668af17ecfe796e15c6cf5a7e3bc656af authored by Eric Willigers on 13 April 2018, 15:13:19 UTC
Accept variation in serialization of 'background'
Tip revision: f6787be
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