Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

  • This test has a WPT meta file that expects 1 subtest issues.
  • This WPT test may be referenced by the following Test IDs:
// META: title=Same-origin navigation started from unload handler must be ignored
// META: script=../resources/helpers.js
promise_test(async () => {
const iframe = await addIframe();
iframe.contentWindow.addEventListener("unload", () => {
iframe.contentWindow.location.href = "/common/blank.html?fail";
});
iframe.src = "/common/blank.html?pass";
await waitForIframeLoad(iframe);
assert_equals(iframe.contentWindow.location.search, "?pass");
});