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

Unified Diff: LayoutTests/fast/dom/Window/orphaned-frame-access.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/orphaned-frame-access.html
diff --git a/LayoutTests/fast/dom/Window/orphaned-frame-access.html b/LayoutTests/fast/dom/Window/orphaned-frame-access.html
index a61e6834125ec7257c5185e0dfcca1da1e950ae0..d888f56932af84e4fe85f4fd01bc1a8071ed6ff7 100644
--- a/LayoutTests/fast/dom/Window/orphaned-frame-access.html
+++ b/LayoutTests/fast/dom/Window/orphaned-frame-access.html
@@ -3,6 +3,7 @@
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<title>Null frame access tests</title>
+<script src="../../../resources/gc.js"></script>
<script>
window.onload = function() {
if (window.testRunner) {
@@ -14,6 +15,7 @@ window.onload = function() {
var win = tag.contentWindow;
// remove the element so the window has a null frame
tag.parentNode.removeChild(tag);
+ gc();
Mads Ager (chromium) 2014/09/16 12:17:44 If you src js-test.js instead you get asyncGC that
sof 2014/09/17 09:42:57 Refreshed the test to use asyncGC()
// schedule to run after the frame is null
setTimeout(function() {

Powered by Google App Engine
This is Rietveld 408576698