summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/client-hints/clear-site-data/set-critical-client-hints-after-clear-all.https.html
blob: 062e72b5446834a08fa12eea857e5905f6af9287 (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
<!DOCTYPE html>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
// Here's the set-up for this test:
// Step 1 (first window) Set client hints in the same header that clears them.
// Step 2 (first window) Open second window.
// Step 3 (second window) Message first window about client hints sent.
// Step 4 (first window) Asserts client hints not sent.
async_test(t => {
    // Step 4
    window.addEventListener("message", t.step_func(e => {
        assert_equals(e.data, "MissingDeviceMemory");
        t.done();
    }), {once: true});

    // Step 2
    new_window = window.open("/client-hints/clear-site-data/resources/check-client-hints.py");
    t.add_cleanup(new_window.close);
}, "Setting critical client hints after Clear-Site-Data for all shouldn't allow the client hints to take.");
</script>
</body>
</html>