[webkit-reviews] review granted: [Bug 23736] WebKit Crashes on http://g-conquest.fr/~server2 : [Attachment 28432] Proposed patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 10 12:42:46 PDT 2009


Geoffrey Garen <ggaren at apple.com> has granted Cameron Zwarich (cpst)
<cwzwarich at uwaterloo.ca>'s request for review:
Bug 23736: WebKit Crashes on http://g-conquest.fr/~server2
https://bugs.webkit.org/show_bug.cgi?id=23736

Attachment 28432: Proposed patch
https://bugs.webkit.org/attachment.cgi?id=28432&action=review

------- Additional Comments from Geoffrey Garen <ggaren at apple.com>
r=me

This is a slightly better way to do GC in a layout test, since it works outside
DRT too:

function gc()
{
    if (window.GCController)
	GCController.collect();
    else
	for (var i = 0; i < 10000; ++i) // Allocate a sufficient number of
objects to force a GC.
	    new Object;
}


More information about the webkit-reviews mailing list