| Index: third_party/WebKit/LayoutTests/external/wpt/clipboard-apis/async-write-dttext-read-text-manual.https.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/clipboard-apis/async-write-dttext-read-text-manual.https.html b/third_party/WebKit/LayoutTests/external/wpt/clipboard-apis/async-write-dttext-read-text-manual.https.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b341d923395677d4c17f8addea7b14e16117bdcf
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/clipboard-apis/async-write-dttext-read-text-manual.https.html
|
| @@ -0,0 +1,27 @@
|
| +<!DOCTYPE html>
|
| +<meta charset="utf-8">
|
| +<title>Async Clipboard write (dt/text) -> readText tests</title>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script>
|
| +async_test(function(t) {
|
| + var test_data = "Clipboard write (dt/text) -> readText test data";
|
| + var cb = navigator.clipboard;
|
| + var dt = new DataTransfer();
|
| + dt.items.add(test_data, "text/plain");
|
| +
|
| + cb.write(dt).then(t.step_func(() => {
|
| + cb.readText().then(t.step_func((data) => {
|
| + assert_equals(data, test_data);
|
| + t.done();
|
| + }), function() {
|
| + t.unreached_func("clipboard.read() fail");
|
| + });
|
| + }), function() {
|
| + t.unreached_func("clipboard.write() fail");
|
| + });
|
| +}, "Verify write and read clipboard (DataTransfer/text)");
|
| +</script>
|
| +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.
|
|
|