summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/404.py
blob: 235a3d4ff0e5d1bf5fecc1e13735fcee732041fe (plain)
1
2
3
4
5
# iframe does not fire onload event if the response's content-type is not
# text/plain or text/html so this script exists if you want to test a 404 load
# in an iframe.
def main(req, res):
    return 404, [('Content-Type', 'text/plain')], "Page not found"