blob: 0e00510d2ee4e5fa80d009f65e8977d7bebd854f [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();
iWindow.navigation.onnavigate = t.unreached_func("onnavigate");
await assertBothRejectDOM(t, iWindow.navigation.reload({ state: document.body }), "InvalidStateError", iWindow, iDOMException);
}, `reload() with unserializable state in a detached iframe throws "InvalidStateError", not "DataCloneError"`);
</script>