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

Unified Diff: LayoutTests/fast/workers/worker-messageport-gc.html

Issue 211933008: Remove multiple GC calls and replace GCController.collect calls with GCController.collectAll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: revert change to worker-event-listener Created 6 years, 9 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/workers/worker-messageport-gc.html
diff --git a/LayoutTests/fast/workers/worker-messageport-gc.html b/LayoutTests/fast/workers/worker-messageport-gc.html
index c6d4fec819f2b988d63674c36565c54707a54f87..35d056316290996422049fa0f98c4ad111bf627f 100644
--- a/LayoutTests/fast/workers/worker-messageport-gc.html
+++ b/LayoutTests/fast/workers/worker-messageport-gc.html
@@ -38,7 +38,7 @@ function testReachable()
function gc()
{
if (window.GCController)
- return GCController.collect();
+ return GCController.collectAll();
for (var i = 0; i < 10000; i++) { // force garbage collection (FF requires about 9K allocations before a collect)
var s = new String("abc");

Powered by Google App Engine
This is Rietveld 408576698