Index: third_party/WebKit/LayoutTests/fast/workers/worker-gc.html |
diff --git a/third_party/WebKit/LayoutTests/fast/workers/worker-gc.html b/third_party/WebKit/LayoutTests/fast/workers/worker-gc.html |
index 9fc6bdd940ece2147fc2080e3f76b8cf318f9a88..7e13789982e183859b3654beeb25a83d84dc08ff 100644 |
--- a/third_party/WebKit/LayoutTests/fast/workers/worker-gc.html |
+++ b/third_party/WebKit/LayoutTests/fast/workers/worker-gc.html |
@@ -1,22 +1,13 @@ |
<body> |
<p>Test worker garbage collection. Should print "SUCCESS".</p> |
<div id=result></div> |
+<script src="../../resources/gc.js"></script> |
<script> |
function log(message) |
{ |
document.getElementById("result").innerHTML += message + "<br>"; |
} |
-function gc() |
-{ |
- if (window.GCController) |
- return GCController.collect(); |
- |
- for (var i = 0; i < 10000; i++) { // > force garbage collection (FF requires about 9K allocations before a collect) |
- var s = new String("abc"); |
- } |
-} |
- |
if (window.testRunner) { |
testRunner.dumpAsText(); |
testRunner.waitUntilDone(); |