blob: b328debde2979499b2e095e33fdb0be440c2ad6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<!doctype html>
<body>
<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>
<script src="/feature-policy/resources/featurepolicy.js"></script>
<script src="../../resources/user-activation.js"></script>
<script>
'use strict';
const same_origin_src =
'/feature-policy/resources/feature-policy-clipboard-write.html';
const cross_origin_src =
'https://{{domains[www]}}:{{ports[https][0]}}' + same_origin_src;
promise_test(async t => {
await tryGrantWritePermission();
return promise_rejects_dom(t, 'NotAllowedError',
navigator.clipboard.writeText('test text'));
}, 'Feature-Policy header clipboard-write "none" disallows the top-level document.');
async_test(t => {
test_feature_availability(
'navigator.clipboard.writeText("test text")',
t,
same_origin_src,
expect_feature_unavailable_default
);
}, 'Feature-Policy header clipboard-write "none" disallows same-origin iframes.');
async_test(t => {
test_feature_availability(
'navigator.clipboard.writeText("test text")',
t,
cross_origin_src,
expect_feature_unavailable_default
);
}, 'Feature-Policy header clipboard-write "none" disallows cross-origin iframes.');
</script>
</body>
|