Skip to content

Commit

Permalink
web share: change feature-policy-listed.html to tentative (#38132)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres authored Feb 8, 2023
1 parent d427544 commit 2ef4c88
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 31 deletions.
31 changes: 0 additions & 31 deletions web-share/feature-policy-listed.html

This file was deleted.

35 changes: 35 additions & 0 deletions web-share/feature-policy-listed.tentative.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebShare Test: policy is listed</title>
<link rel="help" href="https://w3c.github.io/web-share/#permissions-policy">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
'use strict';

test(() => {
assert_true("permissionsPolicy" in document, "permissionsPolicy is implemented");
assert_true(document.permissionsPolicy.allowsFeature('web-share'));
}, 'allowsFeature() returns true for web-share');

test(() => {
assert_true("permissionsPolicy" in document, "permissionsPolicy is implemented");
assert_true(document.permissionsPolicy.features().includes('web-share'));
}, 'features() includes web-share');

test(() => {
assert_true("permissionsPolicy" in document, "permissionsPolicy is implemented");
assert_true(document.permissionsPolicy.allowedFeatures().includes('web-share'));
}, 'allowedFeatures() includes web-share');

test(() => {
assert_true("permissionsPolicy" in document, "permissionsPolicy is implemented");
assert_equals(Array.from(document.permissionsPolicy.getAllowlistForFeature('web-share')).length, 1);
}, 'allowsFeature() returns a single entry for web-share');
</script>
</body>
</html>

0 comments on commit 2ef4c88

Please sign in to comment.