summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/clipboard-apis/permissions/readText-denied.https.html
blob: 010f4ba21b95332c3fabb59c2861b634e1ea48ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<meta charset="utf-8">
<title>navigator.clipboard.readText() fails when permission denied</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 t => {
  await test_driver.set_permission({name: 'clipboard-read'}, 'denied');
  await waitForUserActivation();
  await promise_rejects_dom(t,
      'NotAllowedError', navigator.clipboard.readText());
}, 'navigator.clipboard.readText() fails when permission denied');
</script>