summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/client-hints/accept-ch-stickiness/resources/do-not-expect-client-hints-headers.html
blob: 2421eea18ea806698c25afad0b6f6421c914986b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<body>
<script>

// This test checks if browser attaches the device-memory client hint in the
// HTTP request headers.

// echo-client-hints-received.py sets the response headers depending on the set
// of client hints it receives in the request headers.

fetch("/client-hints/accept-ch-stickiness/resources/echo-client-hints-received.py").then(r => {
  if(r.status == 200 && !r.headers.has("device-memory-received") && !r.headers.has("device-memory-deprecated-received")) {
    window.top.opener.postMessage('PASS', '*');
  }
  else {
    window.top.opener.postMessage('FAIL', '*');
  }
});

</script>
</body>
</html>