blob: b57dfe3dd2888dcaace721a10aeda58ee8e03ee9 (
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
|
<!doctype html>
<body>Body needed for test_driver.click()</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';
promise_test(async t => {
await waitForUserActivation();
test_feature_availability(
'navigator.clipboard.writeText("test text")',
t,
same_origin_src,
expect_feature_available_default,
'clipboard-write'
);
}, 'Feature policy "clipboard-write" can be enabled in same-origin iframe using allow="clipboard-write" attribute');
</script>
|