-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
web share: change feature-policy-listed.html to tentative (#38132)
- Loading branch information
1 parent
d427544
commit 2ef4c88
Showing
2 changed files
with
35 additions
and
31 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |