summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/navigate-ancestor-nested-fenced-frame.https.html
blob: ec41fe8757564da2dda6107bc494266a87b7f323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<title>Test navigating an ancestor frame from a nested fenced frame</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/utils.js"></script>
<script src="/common/utils.js"></script>
<script src="resources/navigate-ancestor-helper.js"></script>

<body>
<script>
promise_test(async t => {
  await runNavigateAncestorTest("nested fenced frame", "parent");
}, "Nested fenced frames that navigate _parent end up navigating themselves");

promise_test(async t => {
  await runNavigateAncestorTest("nested fenced frame", "top");
}, "Nested fenced frames that navigate _top end up navigating themselves");
</script>

</body>