Title: [105532] trunk
Revision
105532
Author
[email protected]
Date
2012-01-20 12:21:41 -0800 (Fri, 20 Jan 2012)

Log Message

Unreviewed, rolling out r105426.
http://trac.webkit.org/changeset/105426
https://bugs.webkit.org/show_bug.cgi?id=76726

Might have caused a 20% regression in the PLT (Requested by
abarth|gardener on #webkit).

Patch by Sheriff Bot <[email protected]> on 2012-01-20

Source/WebCore:

* rendering/RenderObject.h:
(WebCore::RenderObject::style):

LayoutTests:

* platform/mac-snowleopard/Skipped:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (105531 => 105532)


--- trunk/LayoutTests/ChangeLog	2012-01-20 20:08:35 UTC (rev 105531)
+++ trunk/LayoutTests/ChangeLog	2012-01-20 20:21:41 UTC (rev 105532)
@@ -1,3 +1,14 @@
+2012-01-20  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r105426.
+        http://trac.webkit.org/changeset/105426
+        https://bugs.webkit.org/show_bug.cgi?id=76726
+
+        Might have caused a 20% regression in the PLT (Requested by
+        abarth|gardener on #webkit).
+
+        * platform/mac-snowleopard/Skipped:
+
 2012-01-20  Adam Barth  <[email protected]>
 
         Add new baselines for a test introduced in

Modified: trunk/LayoutTests/platform/mac-snowleopard/Skipped (105531 => 105532)


--- trunk/LayoutTests/platform/mac-snowleopard/Skipped	2012-01-20 20:08:35 UTC (rev 105531)
+++ trunk/LayoutTests/platform/mac-snowleopard/Skipped	2012-01-20 20:21:41 UTC (rev 105532)
@@ -183,6 +183,13 @@
 http/tests/media/video-play-progress.html
 http/tests/media/video-load-twice.html
 
+# Regression in performance
+# https://bugs.webkit.org/show_bug.cgi?id=74141
+fast/regions/region-style-block-background-color.html
+fast/regions/region-style-block-background-color2.html
+fast/regions/region-style-image-background-color.html
+fast/regions/region-style-inline-background-color.html
+
 # HiDPI tests have lower-level platform dependencies on Mac
 fast/hidpi
 

Modified: trunk/Source/WebCore/ChangeLog (105531 => 105532)


--- trunk/Source/WebCore/ChangeLog	2012-01-20 20:08:35 UTC (rev 105531)
+++ trunk/Source/WebCore/ChangeLog	2012-01-20 20:21:41 UTC (rev 105532)
@@ -1,3 +1,15 @@
+2012-01-20  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r105426.
+        http://trac.webkit.org/changeset/105426
+        https://bugs.webkit.org/show_bug.cgi?id=76726
+
+        Might have caused a 20% regression in the PLT (Requested by
+        abarth|gardener on #webkit).
+
+        * rendering/RenderObject.h:
+        (WebCore::RenderObject::style):
+
 2012-01-20  Sadrul Habib Chowdhury  <[email protected]>
 
         [chromium] Revert a couple of changes in fileapi/ that break tests in chromeos.

Modified: trunk/Source/WebCore/rendering/RenderObject.h (105531 => 105532)


--- trunk/Source/WebCore/rendering/RenderObject.h	2012-01-20 20:08:35 UTC (rev 105531)
+++ trunk/Source/WebCore/rendering/RenderObject.h	2012-01-20 20:21:41 UTC (rev 105532)
@@ -1110,9 +1110,7 @@
 
 inline RenderStyle* RenderObject::style() const
 {
-    if (!inRenderFlowThread())
-        return m_style.get();
-    return styleInRegion();
+    return m_style.get();
 }
 
 inline void makeMatrixRenderable(TransformationMatrix& matrix, bool has3DRendering)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to