Title: [168140] tags/Safari-538.33

Diff

Modified: tags/Safari-538.33/LayoutTests/ChangeLog (168139 => 168140)


--- tags/Safari-538.33/LayoutTests/ChangeLog	2014-05-02 01:21:53 UTC (rev 168139)
+++ tags/Safari-538.33/LayoutTests/ChangeLog	2014-05-02 01:26:50 UTC (rev 168140)
@@ -1,3 +1,17 @@
+2014-05-01  Lucas Forschler  <lforsch...@apple.com>
+
+        Merge r168088
+
+    2014-04-30  David Hyatt  <hy...@apple.com>
+
+            REGRESSION (r168046): [New Multicolumn] LeftToRight-rl.html (and all the other reversed/block-axis pagination tests) fail
+            https://bugs.webkit.org/show_bug.cgi?id=132419
+
+            Reviewed by Andreas Kling.
+
+            * platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.png:
+            * platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.png:
+
 2014-05-01  Matthew Hanson  <matthew_han...@apple.com>
 
         Rollout r167964.

Modified: tags/Safari-538.33/LayoutTests/platform/mac/fast/multicol/pagination/LeftToRight-rl-expected.png


(Binary files differ)

Modified: tags/Safari-538.33/LayoutTests/platform/mac/fast/multicol/pagination/TopToBottom-bt-expected.png


(Binary files differ)

Modified: tags/Safari-538.33/Source/WebCore/ChangeLog (168139 => 168140)


--- tags/Safari-538.33/Source/WebCore/ChangeLog	2014-05-02 01:21:53 UTC (rev 168139)
+++ tags/Safari-538.33/Source/WebCore/ChangeLog	2014-05-02 01:26:50 UTC (rev 168140)
@@ -1,5 +1,20 @@
 2014-05-01  Lucas Forschler  <lforsch...@apple.com>
 
+        Merge r168088
+
+    2014-04-30  David Hyatt  <hy...@apple.com>
+
+            REGRESSION (r168046): [New Multicolumn] LeftToRight-rl.html (and all the other reversed/block-axis pagination tests) fail
+            https://bugs.webkit.org/show_bug.cgi?id=132419
+
+            Reviewed by Andreas Kling.
+
+            * rendering/RenderMultiColumnSet.cpp:
+            (WebCore::RenderMultiColumnSet::initialBlockOffsetForPainting):
+            Don't flip here. The old code needed to do that, but the new code doesn't.
+
+2014-05-01  Lucas Forschler  <lforsch...@apple.com>
+
     Rollout r168047
 
 2014-04-30  Matthew Hanson  <matthew_han...@apple.com>

Modified: tags/Safari-538.33/Source/WebCore/rendering/RenderMultiColumnSet.cpp (168139 => 168140)


--- tags/Safari-538.33/Source/WebCore/rendering/RenderMultiColumnSet.cpp	2014-05-02 01:21:53 UTC (rev 168139)
+++ tags/Safari-538.33/Source/WebCore/rendering/RenderMultiColumnSet.cpp	2014-05-02 01:26:50 UTC (rev 168140)
@@ -674,8 +674,6 @@
     if (!progressionIsInline && progressionReversed) {
         LayoutRect colRect = columnRectAt(0);
         result = isHorizontalWritingMode() ? colRect.y() : colRect.x();
-        if (style().isFlippedBlocksWritingMode())
-            result = -result;
     }
     return result;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to