summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/navigate-to/support/delayed_frame.py
blob: 06bcb9b680c5769093d050cc019c54ee6d909dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import time
def main(request, response):
    time.sleep(1)
    headers = [(b"Content-Type", b"text/html")]
    return headers, u'''
<!DOCTYPE html>
<head>
</head>
<body>
    DELAYED FRAME
</body
'''