summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/web-share.https.html
blob: 13d182b2d1097d39a6266e97ad29259ad3b96890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<title>Test of Web Share</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="resources/utils.js"></script>
<script src="/common/utils.js"></script>

<body>

<script>
promise_test(async t => {
  const navigator_share_key = token();

  attachFencedFrame(generateURL('resources/web-share-inner.html',
      [navigator_share_key]));
  const result = await nextValueFromServer(navigator_share_key);

  assert_equals(
      result, 'Web Share failed',
      'Web Share in a fenced frame must fail.');
}, 'Web Sharelock in a fenced frame must fail');
</script>

</body>