blob: 33cdd6922d3f8eb90fde4cbf64cffd9c51d1fb8d [file] [log] [blame]
<!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.remove();
await assertBothRejectDOM(t, iWindow.navigation.navigate("?1"), "InvalidStateError", iWindow, iDOMException);
}, "navigate() in a detached window");
</script>