Index: third_party/WebKit/LayoutTests/fast/workers/shared-worker-gc.html |
diff --git a/third_party/WebKit/LayoutTests/fast/workers/shared-worker-gc.html b/third_party/WebKit/LayoutTests/fast/workers/shared-worker-gc.html |
index c2fbd2f2be67e6116bef14197408bb6228603bcb..280fde07178c98a77403bf0a74aade952b185089 100644 |
--- a/third_party/WebKit/LayoutTests/fast/workers/shared-worker-gc.html |
+++ b/third_party/WebKit/LayoutTests/fast/workers/shared-worker-gc.html |
@@ -1,22 +1,13 @@ |
<body> |
<p>Test shared worker garbage collection. Should print "PASS" followed by "DONE".</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(); |