4 lines
221 B
Python
4 lines
221 B
Python
def main(request, response):
|
|
response.headers.set(b"Content-Type", b"text/html")
|
|
response.headers.set(b"Custom", b"\0")
|
|
return b"<!doctype html><script>top.frameLoaded=true</script><b>This is a document.</b>"
|