[Webkit-unassigned] [Bug 126432] REGRESSION (r161195): Acid2 regression tests frequently fail

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 7 11:02:32 PST 2014


https://bugs.webkit.org/show_bug.cgi?id=126432





--- Comment #15 from Antti Koivisto <koivisto at iki.fi>  2014-01-07 11:00:16 PST ---
> Your patch made object load failing asynchronous, i.e. use a zero delay timer. You could change the timer to a non-zero one to simulate stress conditions. This is a fairly common technique.

That's a good idea and this indeed makes it repro consistently with WK1:

--- Source/WebCore/dom/Document.cpp    (revision 161419)
+++ Source/WebCore/dom/Document.cpp    (working copy)
@@ -1682,7 +1682,7 @@
     // FIXME: Why on earth is this here? This is clearly misplaced.
     invalidateAccessKeyMap();

-    m_styleRecalcTimer.startOneShot(0);
+    m_styleRecalcTimer.startOneShot(0.1);

     InspectorInstrumentation::didScheduleStyleRecalculation(this);
 }

I thought you were talking about some DRT option, sorry about that.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list