Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 4 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /permissions-policy/experimental-features/private-state-token-redemption-default-permissions-policy.tentative.https.sub.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Test that private state token redemption is enabled/disabled according to the permissions policy</title>
<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';
const same_origin_src = '/permissions-policy/experimental-features/resources/permissions-policy-private-state-token-redemption.html';
same_origin_src;
const header = 'Default "private-state-token-redemption" permissions policy ["self"]';
test(() => {
try {
// The permissions policy gates redemption and signing via both the Fetch
// and XHR interfaces.
privateToken: {
version: 1,
operation: "token-redemption"
}
});
privateToken: {
version: 1,
operation: "send-redemption-record", // signing
}
});
const redemption_xhr = new XMLHttpRequest();
redemption_xhr.setPrivateToken({
version: 1,
operation: "token-redemption"
});
const signing_xhr = new XMLHttpRequest();
signing_xhr.setPrivateToken({
version: 1,
operation: "send-redemption-record", // signing
});
} catch (e) {
assert_unreached();
}
}, header + ' allows the top-level document.');
async_test(t => {
test_feature_availability('Private state token redemption', t, same_origin_src,
(data, desc) => {
assert_equals(data.num_operations_enabled, 4, desc);
});
}, header + ' allows same-origin iframes.');
async_test(t => {
test_feature_availability('Private state token redemption', t, cross_origin_src,
(data, desc) => {
assert_equals(data.num_operations_enabled, 4, desc);
});
}, header + ' allows cross-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-redemption \'none\'');
}, header + ' and allow="private-state-token-redemption \'none\'" disallows cross-origin iframes.');
</script>
</body>