blob: 06bcb9b680c5769093d050cc019c54ee6d909dfc [file] [log] [blame]
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
'''