blob: 1a06874ae73e0e4d9adfb357cb5c676dfad8be64 [file] [log] [blame]
def main(request, response):
headers = [
("Content-Type", "text/html"),
]
cookie = request.headers.get("Cookie", "no cookie")
return headers, "<html><body><div>%s</div><script>if (window.testRunner) testRunner.notifyDone();</script></body></html>" % cookie.decode()