mirror of
https://github.com/servo/servo.git
synced 2025-10-16 16:29:18 +01:00
29 lines
936 B
HTML
29 lines
936 B
HTML
<!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>
|