20 lines
722 B
HTML
20 lines
722 B
HTML
<!DOCTYPE html>
|
|
<title>Test navigating an ancestor frame from a 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("top-level fenced frame", "parent");
|
|
}, "Top-level fenced frames that navigate _parent end up navigating themselves");
|
|
|
|
promise_test(async t => {
|
|
await runNavigateAncestorTest("top-level fenced frame", "top");
|
|
}, "Top-level fenced frames that navigate _top end up navigating themselves");
|
|
</script>
|
|
|
|
</body>
|