blob: 532a0404240593173a79b0d1009bacc1d85ff02d (
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
29
|
<!doctype html>
<body>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
promise_test(async t => {
const xhr = new XMLHttpRequest();
let xhr_response = new Promise((resolve, reject) => {
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
// An empty result indicates that the request was eligible for
// topics. Currently, the web-platform-tests framework does not
// support actually handling the topics request.
assert_equals(xhr.responseText, "");
resolve();
}
}
});
xhr.open('GET', './resources/check-topics-request-header.py');
xhr.deprecatedBrowsingTopics = true;
xhr.send();
await xhr_response;
}, 'test XHR that sets the deprecatedBrowsingTopics attribtue');
</script>
</body>
|