summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/clipboard-apis/permissions/writeText-granted.https.html
blob: ff347b7adda0727a07e9e76df9adb482eae746bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<meta charset="utf-8">
<title>navigator.clipboard.writeText() succeeds when permission granted</title>
<link rel="help" href="https://w3c.github.io/clipboard-apis/#async-clipboard-api">
<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="../resources/user-activation.js"></script>
<script>
'use strict';

promise_test(async () => {
  await test_driver.set_permission({name: 'clipboard-write'}, 'granted');
  await waitForUserActivation();
  await navigator.clipboard.writeText('xyz');
}, 'navigator.clipboard.writeText() succeeds when permission granted');
</script>