Changeset 167483 in webkit


Ignore:
Timestamp:
Apr 17, 2014, 10:10:38 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r167478.
https://bugs.webkit.org/show_bug.cgi?id=131840

Broke multicol tests (Requested by ap on #webkit).

Reverted changeset:

"[New Multicolumn] Pagination mode messed up with non-inline
axis and reversed direction."
https://bugs.webkit.org/show_bug.cgi?id=131811
http://trac.webkit.org/changeset/167478

Location:
trunk
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r167480 r167483  
     12014-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
    1152014-04-17  Darin Adler  <darin@apple.com>
    216
  • trunk/Source/WebCore/ChangeLog

    r167481 r167483  
     12014-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
    1152014-04-17  Daniel Bates  <dabates@apple.com>
    216
  • trunk/Source/WebCore/rendering/RenderMultiColumnSet.cpp

    r167478 r167483  
    2727#include "RenderMultiColumnSet.h"
    2828
    29 #include "FrameView.h"
    3029#include "PaintInfo.h"
    3130#include "RenderLayer.h"
    3231#include "RenderMultiColumnFlowThread.h"
    3332#include "RenderMultiColumnSpannerPlaceholder.h"
    34 #include "RenderView.h"
    3533
    3634namespace WebCore {
     
    4139    , m_computedColumnWidth(0)
    4240    , m_computedColumnHeight(0)
    43     , m_availableColumnHeight(0)
    4441    , m_maxColumnHeight(RenderFlowThread::maxLogicalHeight())
    4542    , m_minSpaceShortage(RenderFlowThread::maxLogicalHeight())
     
    155152    if (m_computedColumnHeight > m_maxColumnHeight)
    156153        m_computedColumnHeight = m_maxColumnHeight;
    157    
    158     // FIXME: The available column height is not the same as the constrained height specified
    159     // by the pagination API. The column set in this case is allowed to be bigger than the
    160     // height of a single column. We cache available column height in order to use it
    161     // in computeLogicalHeight later. This is pretty gross, and maybe there's a better way
    162     // to formalize the idea of clamped column heights without having a view dependency
    163     // 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     }
    170154    // FIXME: the height may also be affected by the enclosing pagination context, if any.
    171155}
     
    413397void RenderMultiColumnSet::computeLogicalHeight(LayoutUnit, LayoutUnit logicalTop, LogicalExtentComputedValues& computedValues) const
    414398{
    415     computedValues.m_extent = m_availableColumnHeight;
     399    computedValues.m_extent = m_computedColumnHeight;
    416400    computedValues.m_position = logicalTop;
    417401}
  • trunk/Source/WebCore/rendering/RenderMultiColumnSet.h

    r167478 r167483  
    179179    LayoutUnit m_computedColumnWidth; // Used column width (the resulting 'W' from the pseudo-algorithm in the multicol spec)
    180180    LayoutUnit m_computedColumnHeight;
    181     LayoutUnit m_availableColumnHeight;
    182181   
    183182    // The following variables are used when balancing the column set.
  • trunk/Source/WebCore/rendering/RenderView.cpp

    r167478 r167483  
    296296        return pageLogicalHeight();
    297297   
    298     if ((hasColumns() || multiColumnFlowThread()) && !style().hasInlineColumnAxis()) {
     298    if (hasColumns() && !style().hasInlineColumnAxis()) {
    299299        if (int pageLength = frameView().pagination().pageLength)
    300300            return pageLength;
Note: See TracChangeset for help on using the changeset viewer.