https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 6f869cd68557949f12ca6b640ddbd8c505a4decb authored by L. David Baron on 09 April 2018, 04:44:44 UTC
Sync Mozilla tests as of https://hg.mozilla.org/mozilla-central/rev/b4bc6b2401738b78fd47127a4c716bb9178e1a09 .
Tip revision: 6f869cd
share-url-invalid.https.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>WebShare Test: Share with an invalid URL</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <script>
        promise_test(t => {
          // URL is invalid in that the URL Parser returns failure (port is too
          // large).
          const url = 'http://example.com:65536';
          return promise_rejects(
              t, new TypeError(), navigator.share({url}));
        }, 'share with an invalid URL');
    </script>
  </body>
</html>
back to top