Changeset 167483 in webkit
- Timestamp:
- Apr 17, 2014, 10:10:38 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r167480 r167483 1 2014-04-17 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r167478. 4 https://bugs.webkit.org/show_bug.cgi?id=131840 5 6 Broke multicol tests (Requested by ap on #webkit). 7 8 Reverted changeset: 9 10 "[New Multicolumn] Pagination mode messed up with non-inline 11 axis and reversed direction." 12 https://bugs.webkit.org/show_bug.cgi?id=131811 13 http://trac.webkit.org/changeset/167478 14 1 15 2014-04-17 Darin Adler <darin@apple.com> 2 16 -
trunk/Source/WebCore/ChangeLog
r167481 r167483 1 2014-04-17 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, rolling out r167478. 4 https://bugs.webkit.org/show_bug.cgi?id=131840 5 6 Broke multicol tests (Requested by ap on #webkit). 7 8 Reverted changeset: 9 10 "[New Multicolumn] Pagination mode messed up with non-inline 11 axis and reversed direction." 12 https://bugs.webkit.org/show_bug.cgi?id=131811 13 http://trac.webkit.org/changeset/167478 14 1 15 2014-04-17 Daniel Bates <dabates@apple.com> 2 16 -
trunk/Source/WebCore/rendering/RenderMultiColumnSet.cpp
r167478 r167483 27 27 #include "RenderMultiColumnSet.h" 28 28 29 #include "FrameView.h"30 29 #include "PaintInfo.h" 31 30 #include "RenderLayer.h" 32 31 #include "RenderMultiColumnFlowThread.h" 33 32 #include "RenderMultiColumnSpannerPlaceholder.h" 34 #include "RenderView.h"35 33 36 34 namespace WebCore { … … 41 39 , m_computedColumnWidth(0) 42 40 , m_computedColumnHeight(0) 43 , m_availableColumnHeight(0)44 41 , m_maxColumnHeight(RenderFlowThread::maxLogicalHeight()) 45 42 , m_minSpaceShortage(RenderFlowThread::maxLogicalHeight()) … … 155 152 if (m_computedColumnHeight > m_maxColumnHeight) 156 153 m_computedColumnHeight = m_maxColumnHeight; 157 158 // FIXME: The available column height is not the same as the constrained height specified159 // by the pagination API. The column set in this case is allowed to be bigger than the160 // height of a single column. We cache available column height in order to use it161 // in computeLogicalHeight later. This is pretty gross, and maybe there's a better way162 // to formalize the idea of clamped column heights without having a view dependency163 // here.164 m_availableColumnHeight = m_computedColumnHeight;165 if (multiColumnFlowThread() && !multiColumnFlowThread()->progressionIsInline() && parent()->isRenderView()) {166 int pageLength = view().frameView().pagination().pageLength;167 if (pageLength)168 m_computedColumnHeight = pageLength;169 }170 154 // FIXME: the height may also be affected by the enclosing pagination context, if any. 171 155 } … … 413 397 void RenderMultiColumnSet::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const 414 398 { 415 computedValues.m_extent = m_ availableColumnHeight;399 computedValues.m_extent = m_computedColumnHeight; 416 400 computedValues.m_position = logicalTop; 417 401 } -
trunk/Source/WebCore/rendering/RenderMultiColumnSet.h
r167478 r167483 179 179 LayoutUnit m_computedColumnWidth; // Used column width (the resulting 'W' from the pseudo-algorithm in the multicol spec) 180 180 LayoutUnit m_computedColumnHeight; 181 LayoutUnit m_availableColumnHeight;182 181 183 182 // The following variables are used when balancing the column set. -
trunk/Source/WebCore/rendering/RenderView.cpp
r167478 r167483 296 296 return pageLogicalHeight(); 297 297 298 if ( (hasColumns() || multiColumnFlowThread()) && !style().hasInlineColumnAxis()) {298 if (hasColumns() && !style().hasInlineColumnAxis()) { 299 299 if (int pageLength = frameView().pagination().pageLength) 300 300 return pageLength;
Note:
See TracChangeset
for help on using the changeset viewer.