Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /permissions-policy/experimental-features/permissions-policy-header-scheme-only.https.sub.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
test(function() {
var wildcard_origin = 'https:';
assert_array_equals(
document.featurePolicy.getAllowlistForFeature('fullscreen'),
[wildcard_origin]);
assert_true(document.featurePolicy.allowsFeature('fullscreen'));
}, 'Test scheme only policy works as expected');
</script>
</body>