Title: [136054] trunk/Source/WebCore
Revision
136054
Author
[email protected]
Date
2012-11-28 13:38:12 -0800 (Wed, 28 Nov 2012)

Log Message

[CSS Regions] Elements using transforms are not repainted correctly when rendered in a region
https://bugs.webkit.org/show_bug.cgi?id=102826

Reviewed by Dave Hyatt.

Follow up update of a comment after the patch was landed by the commit queue in r135921.

* rendering/RenderObject.cpp:
(WebCore::RenderObject::containerForRepaint):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (136053 => 136054)


--- trunk/Source/WebCore/ChangeLog	2012-11-28 21:30:15 UTC (rev 136053)
+++ trunk/Source/WebCore/ChangeLog	2012-11-28 21:38:12 UTC (rev 136054)
@@ -1,3 +1,15 @@
+2012-11-28  Alexandru Chiculita  <[email protected]>
+
+        [CSS Regions] Elements using transforms are not repainted correctly when rendered in a region
+        https://bugs.webkit.org/show_bug.cgi?id=102826
+
+        Reviewed by Dave Hyatt.
+
+        Follow up update of a comment after the patch was landed by the commit queue in r135921.
+
+        * rendering/RenderObject.cpp:
+        (WebCore::RenderObject::containerForRepaint):
+
 2012-11-28  Christophe Dumez  <[email protected]>
 
         CSS3 Multicolumn: column-span should accept value 'none' (instead of '1')

Modified: trunk/Source/WebCore/rendering/RenderObject.cpp (136053 => 136054)


--- trunk/Source/WebCore/rendering/RenderObject.cpp	2012-11-28 21:30:15 UTC (rev 136053)
+++ trunk/Source/WebCore/rendering/RenderObject.cpp	2012-11-28 21:38:12 UTC (rev 136054)
@@ -1290,7 +1290,7 @@
 #endif
 
     // If we have a flow thread, then we need to do individual repaints within the RenderRegions instead.
-    // Return the flow thread as a repaint container in order to create a checkpoint that allows us to change
+    // Return the flow thread as a repaint container in order to create a chokepoint that allows us to change
     // repainting to do individual region repaints.
     if (inRenderFlowThread()) {
         RenderFlowThread* parentRenderFlowThread = enclosingRenderFlowThread();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to