Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated.html

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comments + fix fast/events/message-port-gc-closed.html Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated.html
diff --git a/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated.html b/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated.html
index 72d85a54bd07dd151ac7b2a39c33c49e03ff5192..104831e99031b235c3d5ba673acb9bdcf774b0ca 100644
--- a/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated.html
+++ b/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated.html
@@ -27,7 +27,8 @@ function runTest()
if (frame.src != 'about:blank') {
description("Tests access of cached DOMWindow properties after the associated frame is navigated. Test should not crash and properties should be set to sane defaults.");
childWindow = frame.contentWindow;
- collectProperties();
+ // Have expected results assume that the frame hasn't been GCed (=> window.closed = false.)
+ collectProperties(false);
frame.src = 'about:blank';
return;
}

Powered by Google App Engine
This is Rietveld 408576698