https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 821e3a0ec1d006772be7b2250706e063bfb15654 authored by nikhil on 09 February 2018, 06:43:24 UTC
[css-typed-om] CSSTransformComponent should have default value for is2D.
Tip revision: 821e3a0
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