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() { |