summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/window-frameElement.https.html
blob: bd4532b1ebeefe3cd3bb92bafb2a56707ebe3ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<title>Test window.parent</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
<script src="resources/utils.js"></script>

<body>

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

  attachFencedFrame(generateURL("resources/window-frameElement-inner.html",
      [frame_element_key]));
  const fenced_frame_result = await nextValueFromServer(frame_element_key);
  assert_equals(fenced_frame_result, "PASS");
}, "window.frameElement null for same-origin fenced frames");
</script>

</body>