Index: LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced.html |
diff --git a/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced.html b/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced.html |
index 45490b58dabeb1c25957597e892419db62f74790..96b703393fdb1afa6fd4a705d6d4a27e42ddf7c8 100644 |
--- a/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced.html |
+++ b/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced.html |
@@ -26,7 +26,8 @@ function runTest() |
description("Tests access of cached DOMWindow properties after the associated frame is removed from a web page and garbage collected. Test should not crash and properties should be set to sane defaults."); |
var frame = document.getElementById("frame"); |
childWindow = frame.contentWindow; |
- collectProperties(); |
+ // Have expected results assume that the frame has been closed (=> window.closed = true.) |
+ collectProperties(true); |
frame.parentNode.removeChild(frame); |
window.setTimeout(verifyResults, 0); |
} |