blob: 47ef7fa1158578e3b6bf51ac12fd3f486e52b054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebShare Test: Surplus arguments ignored</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: 'the title', text: 'the message', url: 'https://example.com'});
callWhenButtonClicked(() => navigator.share(
{title: 'the title', text: 'the message', url: 'https://example.com'},
'more than required'));
</script>
</body>
</html>
|