https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 304d5d487eda2ce794f9ce366a279787d239a2eb authored by Simon Pieters on 24 August 2018, 09:32:45 UTC
HTML: Add margins to reference for fieldset translateZ test
Tip revision: 304d5d4
redirect.py
def main(request, response):
    response.status = 302
    response.headers.set("X-Frame-Options", request.GET.first("value"))
    response.headers.set("Location", request.GET.first("url"))
back to top