aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/html/semantics/scripting-1/the-script-element/cacheable-script-throw.py
blob: 5df883c07be307fb2f6ff6b14354a5bc816ce662 (plain) (blame)
1
2
3
4
def main(request, response):
    headers = [("Content-Type", "text/javascript"), ("Cache-control", "public, max-age=100")]
    body = "throw('fox');"
    return 200, headers, body