1
0
Fork 0
firefox/testing/web-platform/tests/navigation-api/navigation-methods/navigate-from-initial-about-blank-gc.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
542 B
HTML

<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/gc.js"></script>
<iframe id="i" src="/common/blank.html"></iframe>
<!--
Regression test for https://bugs.chromium.org/p/chromium/issues/detail?id=1289864.
-->
<script>
promise_test(t => {
i.contentWindow.navigation.navigate("/common/blank.html?1");
return garbageCollect();
}, `navigate() from <iframe> with src="" but still on initial about:blank doesn't cause a crash on GC`);
</script>