https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d241659cf7ee83d5b0b15b999676a2ca7b276808 authored by David Storey on 29 March 2018, 23:39:52 UTC
Add test for DocumentAndElementEventHandlers in SVG
Tip revision: d241659
async-write-dttext-read-text-manual.https.html
<!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.
back to top