Skip to content

Commit

Permalink
Bug 1653268 [wpt PR 24628] - WebShare: Introduce web-share feature po…
Browse files Browse the repository at this point in the history
…licy, a=testonly

Automatic update from web-platform-tests
WebShare: Introduce web-share feature policy

share() requests fail with a rejected promise if the 'web-share'
feature is not enabled.

We define 'self' as the default feature policy for web-share.

The spec has been updated
w3c/web-share#166

Intent to Ship
https://groups.google.com/a/chromium.org/g/blink-dev/c/fgme9KOd8CU/m/TCYPKQAXAwAJ

Bug: 1079104
Change-Id: Id4030448a54589eddb45185cbd6fd8970aee34c3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2299791
Commit-Queue: Eric Willigers <[email protected]>
Reviewed-by: Ian Clelland <[email protected]>
Reviewed-by: Daniel Murphy <[email protected]>
Reviewed-by: Dominick Ng <[email protected]>
Cr-Commit-Position: refs/heads/master@{#789872}

--

wpt-commits: 1bd9297b8aa6870267c0c0ad1fa445f897ddecd7
wpt-pr: 24628
  • Loading branch information
ericwilligers authored and moz-wptsync-bot committed Jul 24, 2020
1 parent 5409973 commit a01ec18
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>WebShare Test: Can be disabled by feature policy</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
</head>
<body>
<script>
promise_test(async t => {
await test_driver.bless("web share");

await promise_rejects_dom(t, "NotAllowedError", navigator.share({}));
}, "share can be disabled by feature policy");
</script>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Feature-Policy: web-share 'none'

0 comments on commit a01ec18

Please sign in to comment.