blob: 876f025f3eabd51759aed081a8fd3cce505004e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
def main(request, response):
"""
Check that headers sent to navigate here contain the device-memory client
hint, and report success/failure in a way compatible with
verify_navigation_state() in accept-ch-test.js
"""
if b"sec-ch-device-memory" not in request.headers:
result = u"DEVICE-MEMORY"
elif b"device-memory" not in request.headers:
result = u"DEVICE-MEMORY-DEPRECATED"
elif b"sec-ch-ua" not in request.headers:
result = u"UA"
elif b"sec-ch-ua-mobile" not in request.headers:
result = u"MOBILE"
elif b"sec-ch-ua-platform" not in request.headers:
result = u"PLATFORM"
else:
result = u"PASS"
content = u'''
<script>
let messagee = window.opener || window.parent;
messagee.postMessage("%s" , "*");
</script>
''' % (result)
headers = [(b"Content-Type", b"text/html"), (b"Access-Control-Allow-Origin", b"*")]
return 200, headers, content
|