Revision af678273b4059c687242b7a2bc1ebacffd1750c9 authored by Geoffrey Sneddon on 27 March 2018, 15:21:52 UTC, committed by Geoffrey Sneddon on 09 April 2018, 13:53:48 UTC
1 parent 509d7ab
Raw File
share-url-data-manual.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>WebShare Test: Share with data 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});

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