Bug 1770047 [wpt PR 34117] - [Clipboard API] Clipboard Web Custom Formats implementat...
[gecko.git] / testing / web-platform / tests / web-share / share-url-noscheme-manual.https.html
blobe9d7eefeb74f84a38bc9c166731da952866cf986
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>WebShare Test: Share with URL without a scheme</title>
6 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script>
8 <script src="resources/manual-helper.js"></script>
9 </head>
10 <body>
11 <script>
12 setup({explicit_timeout: true});
14 const url = '//www.example.com/some/path?some_query#some_fragment';
15 setupManualShareTest({title: '', text: '', url: getAbsoluteUrl(url)});
16 callWhenButtonClicked(() => navigator.share({url}));
17 </script>
18 </body>
19 </html>