mirror of
https://github.com/servo/servo.git
synced 2025-10-15 07:50:20 +01:00
17 lines
705 B
HTML
17 lines
705 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>navigator.clipboard.writeText() fails when permission denied</title>
|
|
<link rel="help" href="https://w3c.github.io/clipboard-apis/#async-clipboard-api">
|
|
<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>
|
|
'use strict';
|
|
|
|
promise_test(async t => {
|
|
await test_driver.set_permission({name: 'clipboard-write'}, 'denied');
|
|
await promise_rejects_dom(t, 'NotAllowedError',
|
|
navigator.clipboard.writeText('xyz'));
|
|
}, 'navigator.clipboard.writeText() fails when permission denied');
|
|
</script>
|