summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/permissions-policy/resources/permissions-policy-private-state-token-issuance.html
blob: f2bf31918e18909b6385a1988ad0cae463b1614d (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
30
31
32
33
34
35
<!DOCTYPE html>
<script>
'use strict';

window.onload = function() {
  // Check issuance operation availability for both Request and XMLHttpRequest.
  // They are tied to the same permission policy. They should be both enabled or disabled.
  let num_enabled = 2;
  try {
    const issue_request = new Request("https://issuer.example/", {
      privateToken: {
        version: 1,
        operation: "token-request"
      }
    });
  } catch (e) {
    num_enabled--;
  }

  try {
    const xhr = new XMLHttpRequest();
    xhr.open("GET", "https://issuer.example/");
    xhr.setPrivateToken({
      version: 1,
      operation: "token-request"
    });
  } catch (e) {
    num_enabled--;
  }
  parent.postMessage({
    type: 'availability-result',
    num_operations_enabled: num_enabled,
  }, '*');
}
</script>