summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/404.py
blob: 1ee4af169e75bd185d91df78ccb51571bc124747 (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, [(b'Content-Type', b'text/plain')], b"Page not found"