25 lines
952 B
HTML
25 lines
952 B
HTML
<!DOCTYPE html>
|
|
<title>Test navigating an ancestor frame from a iframe in a fenced frame</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/testdriver.js"></script>
|
|
<script src="/resources/testdriver-actions.js"></script>
|
|
<script src="/resources/testdriver-vendor.js"></script>
|
|
<script src="/common/utils.js"></script>
|
|
<script src="/common/dispatcher/dispatcher.js"></script>
|
|
<script src="/common/get-host-info.sub.js"></script>
|
|
<script src="resources/utils.js"></script>
|
|
<script src="resources/navigate-ancestor-helper.js"></script>
|
|
|
|
<body>
|
|
<script>
|
|
promise_test(async t => {
|
|
await runNavigateAncestorTest("nested iframe", "parent");
|
|
}, "Iframes nested in fenced frames fail to navigate _parent");
|
|
|
|
promise_test(async t => {
|
|
await runNavigateAncestorTest("nested iframe", "top");
|
|
}, "Iframes nested in fenced frames fail to navigate _top");
|
|
</script>
|
|
|
|
</body>
|