blob: 3436138b2c5ea7fc6d1f5cfaad17b65f466c26a3 (
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 client hints after Clear-Site-Data for cache shouldn't allow the client hints to take.");
</script>
</body>
</html>
|