https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 399fb2453a1af2d56bf7ddd6710b49a7be28c0e0 authored by Luke Bjerring on 05 April 2018, 19:27:41 UTC
Improve idlharness error message for exposure test
Tip revision: 399fb24
share-url-empty-manual.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>WebShare Test: Share with empty URL</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});

        setupManualShareTest({title: '', text: '', url: document.baseURI});
        callWhenButtonClicked(() => navigator.share({url: ''}));
    </script>
  </body>
</html>
back to top