https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c417cb73192361552f7d8c10caffd2cf1f27956a authored by Florian Rivoal on 29 March 2018, 06:07:22 UTC
[css-overflow-3] test the flow-relative overflow properties
Tip revision: c417cb7
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