18 lines
542 B
HTML
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>
|