mirror of
https://github.com/servo/servo.git
synced 2025-10-18 17:29:18 +01:00
26 lines
1 KiB
HTML
26 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title> Async Clipboard raw write -> Async Clipboard raw read tests </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>
|
|
async function readWriteTest(rawInput) {
|
|
promise_test(async t => {
|
|
const blobInput = new Blob([rawInput], {type: 'chromium/x-test-format'});
|
|
const clipboardItem = new ClipboardItem(
|
|
{'chromium/x-test-format': blobInput}, {raw: true});
|
|
|
|
await navigator.clipboard.write([clipboardItem]);
|
|
// TODO(https://crbug.com/897289): Implement raw clipboard read.
|
|
|
|
}, 'Verify write and read clipboard given arbitrary raw input: ' + rawInput);
|
|
}
|
|
|
|
readWriteTest('Async Clipboard raw write -> Async Clipboard raw read tests');
|
|
</script>
|
|
<p>
|
|
Note: This is a manual test because it writes/reads to the shared system
|
|
clipboard and thus cannot be run async with other tests that might interact
|
|
with the clipboard.
|
|
</p>
|