Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-share/share-without-user-gesture.https.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebShare Test: Share without user gesture error</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
promise_test(t => {
return promise_rejects_dom(
t, 'NotAllowedError',
navigator.share({title: 'the title', text: 'the message',
}, 'share without a user gesture');
</script>
</body>
</html>