blob: 1c6fc49a056605a1dfab3fb96cd1155ea72716c7 [file] [log] [blame]
<!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>
'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 test_driver.set_permission({ name: 'clipboard-write' }, 'granted');
await navigator.clipboard.writeText('test text');
}, 'Feature-Policy header clipboard-write "*" allows the top-level document.');
async_test(t => {
test_feature_availability(
'navigator.clipboard.writeText("test text")',
t,
same_origin_src,
expect_feature_available_default
);
}, 'Feature-Policy header clipboard-write "*" allows same-origin iframes.');
</script>
</body>