summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/browsing-topics/xhr-topics-insecure-context.tentative.http.html
blob: 5e32b83f9e4afd41af406a545c9740572e6b24b1 (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
<!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) {
            // The request was not eligible for topics, as the context is not
            // secure.
            assert_equals(xhr.responseText, "NO_TOPICS_HEADER");
            resolve();
          }
        }
      });

      xhr.open('GET', './resources/check-topics-request-header.py');
      xhr.deprecatedBrowsingTopics = true;
      xhr.send();

      await xhr_response;
    }, 'test XHR in insecure context that sets the deprecatedBrowsingTopics attribtue');
  </script>
</body>