https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4d811782addaeae38d6d6d1c180d0a447dd821f9 authored by Darren Shen on 13 April 2018, 06:23:04 UTC
[css-typed-om] Support remaining misc properties.
Tip revision: 4d81178
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