summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/permissions-policy/experimental-features/private-state-token-redemption-supported-by-permissions-policy.tentative.html
blob: 0399f167fb045b967114db33c9461b0355c8a9ff (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<title>Test that private state token redemption is advertised in the feature list</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(() => {
    assert_in_array('private-state-token-redemption', document.featurePolicy.features());
  }, 'document.featurePolicy.features should advertise private-state-token-redemption.');
</script>