mirror of
https://github.com/servo/servo
synced 2026-05-15 03:16:47 +02:00
22 lines
711 B
HTML
22 lines
711 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>WebShare Test: Can be disabled by feature policy</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>
|
|
<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>
|