Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

  • This test has a WPT meta file that expects 5 subtest issues.
  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<body>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/permissions-policy/resources/permissions-policy.js></script>
<script>
'use strict';
var same_origin_src = '/permissions-policy/resources/permissions-policy-private-state-token-issuance.html';
same_origin_src;
var test_desc_begin = 'Permissions policy header "private-state-token-issuance=()"';
test(() => {
assert_throws_dom('NotAllowedError', () => {
const issue_request = new Request("https://issuer.example/", {
privateToken: {
version: 1,
operation: "token-request"
}
});
});
assert_throws_dom('NotAllowedError', () => {
const xhr = new XMLHttpRequest();
xhr.open("GET", "https://issuer.example/");
xhr.setPrivateToken({
version: 1,
operation: "token-request"
});
});
}, test_desc_begin + ' disallows the top-level document.');
async_test(t => {
test_feature_availability('Private State Token issuance request', t,
same_origin_src,
(data, desc) => {
assert_equals(data.num_operations_enabled, 0, desc);
});
}, test_desc_begin + ' disallows same-origin iframes.');
async_test(t => {
test_feature_availability('Private State Token issuance request', t,
cross_origin_src,
(data, desc) => {
assert_equals(data.num_operations_enabled, 0, desc);
});
}, test_desc_begin + ' disallows cross-origin iframes.');
async_test(t => {
test_feature_availability(
'Private State Token issuance request', t, same_origin_src,
(data, desc) => {
assert_equals(data.num_operations_enabled, 0, desc);
}, 'private-state-token-issuance');
}, test_desc_begin + ' and allow="private-state-token-issuance" disallows same-origin iframes.');
async_test(t => {
test_feature_availability(
'Private State Token issuance request', t, cross_origin_src,
(data, desc) => {
assert_equals(data.num_operations_enabled, 0, desc);
}, 'private-state-token-issuance');
}, test_desc_begin + ' and allow="private-state-token-issuance" disallows cross-origin iframes.');
</script>
</body>