summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/return-value/navigate-detach-in-onnavigate.html
blob: 0e80e1b1305c3a257e69b81a7dbdbf2984392629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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 iWindow = i.contentWindow;
  const iDOMException = iWindow.DOMException;
  i.contentWindow.navigation.onnavigate = () => i.remove();

  await assertBothRejectDOM(t, i.contentWindow.navigation.navigate("#1"), "AbortError", iWindow, iDOMException);
}, "navigate() promise rejections when detaching an iframe inside onnavigate");
</script>