Title: [118553] trunk/Source/WebCore
Revision
118553
Author
[email protected]
Date
2012-05-25 13:02:24 -0700 (Fri, 25 May 2012)

Log Message

Unreviewed, rolling out r112155.
http://trac.webkit.org/changeset/112155
https://bugs.webkit.org/show_bug.cgi?id=79389
Hitch (due to style recalc?) when starting CSS3 animation

This caused a number of issues, including:
https://bugs.webkit.org/show_bug.cgi?id=87146
https://bugs.webkit.org/show_bug.cgi?id=84194
<rdar://problem/11506629>
<rdar://problem/11267408>
<rdar://problem/11531859>

* dom/Element.cpp:
(WebCore::Element::recalcStyle):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (118552 => 118553)


--- trunk/Source/WebCore/ChangeLog	2012-05-25 19:50:02 UTC (rev 118552)
+++ trunk/Source/WebCore/ChangeLog	2012-05-25 20:02:24 UTC (rev 118553)
@@ -1,3 +1,20 @@
+2012-05-25  Dean Jackson  <[email protected]>
+
+        Unreviewed, rolling out r112155.
+        http://trac.webkit.org/changeset/112155
+        https://bugs.webkit.org/show_bug.cgi?id=79389
+        Hitch (due to style recalc?) when starting CSS3 animation
+
+        This caused a number of issues, including:
+        https://bugs.webkit.org/show_bug.cgi?id=87146
+        https://bugs.webkit.org/show_bug.cgi?id=84194
+        <rdar://problem/11506629>
+        <rdar://problem/11267408>
+        <rdar://problem/11531859>
+
+        * dom/Element.cpp:
+        (WebCore::Element::recalcStyle):
+
 2012-05-25  David Hyatt  <[email protected]>
 
         https://bugs.webkit.org/show_bug.cgi?id=87525

Modified: trunk/Source/WebCore/dom/Element.cpp (118552 => 118553)


--- trunk/Source/WebCore/dom/Element.cpp	2012-05-25 19:50:02 UTC (rev 118552)
+++ trunk/Source/WebCore/dom/Element.cpp	2012-05-25 20:02:24 UTC (rev 118553)
@@ -1115,7 +1115,7 @@
         }
 
         if (change != Force) {
-            if (styleChangeType() == FullStyleChange)
+            if (styleChangeType() >= FullStyleChange)
                 change = Force;
             else
                 change = ch;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to