summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/return-value/navigate-cross-document.html
blob: b83b1e941fd9c594adb174d9d0f2edc9cc7fcb7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/helpers.js"></script>

<iframe id="i" src="/common/blank.html"></iframe>
<script>
promise_test(async t => {
  await new Promise(resolve => window.onload = resolve);

  const result = i.contentWindow.navigation.navigate("?1");
  assertNeverSettles(t, result, i.contentWindow);

  await new Promise(resolve => i.onload = () => t.step_timeout(resolve, 0));
}, "cross-document navigate() promises never settle");
</script>