From bce3e8f7c6339f57acf368b35208308206b3e99d Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Fri, 13 Mar 2026 15:39:34 +0800 Subject: [PATCH] Fix a flaky frame test Loading `sub 1.html` has a side effect - it increments window.top..sub1_count). So it should be used careful. It was being used in `about_blank_renavigate` as a placeholder which _should_ not get navigated, but there's no strict guarantee about when it gets canceled. --- src/browser/tests/frames/frames.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/tests/frames/frames.html b/src/browser/tests/frames/frames.html index 97bed281..90cb038e 100644 --- a/src/browser/tests/frames/frames.html +++ b/src/browser/tests/frames/frames.html @@ -108,7 +108,7 @@ { let f5 = document.createElement('iframe'); f5.id = 'f5'; - f5.src = "support/sub 1.html"; + f5.src = "support/page.html"; document.documentElement.appendChild(f5); f5.src = "about:blank";