https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5bc3dc059852c3c0a580e1eb4e17df7da87df58b authored by Dan Harrington on 03 April 2018, 23:04:26 UTC
Provide thumbnails in DownloadUIAdapter
Tip revision: 5bc3dc0
share-cancel-manual.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>WebShare Test: Share cancelled by user</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="resources/manual-helper.js"></script>
  </head>
  <body>
    <script>
        setup({explicit_timeout: true});

        setupManualShareTestRequiringCancellation();

        promise_test(t => {
          return callWhenButtonClicked(() => promise_rejects(
              t, 'AbortError',
              navigator.share({title: 'the title', text: 'the message',
                               url: 'data:the url'})));
        }, 'share with user cancellation');
    </script>
  </body>
</html>
back to top