Changeset 167721 in webkit


Ignore:
Timestamp:
Apr 23, 2014 1:54:12 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

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

broke eight newmulticol tests (Requested by thorton on
#webkit).

Reverted changeset:

"[New Multicolumn] Assertion failure in huge-column-
count.html"
https://bugs.webkit.org/show_bug.cgi?id=132071
http://trac.webkit.org/changeset/167720

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r167720 r167721  
     12014-04-23  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r167720.
     4        https://bugs.webkit.org/show_bug.cgi?id=132075
     5
     6        broke eight newmulticol tests (Requested by thorton on
     7        #webkit).
     8
     9        Reverted changeset:
     10
     11        "[New Multicolumn] Assertion failure in huge-column-
     12        count.html"
     13        https://bugs.webkit.org/show_bug.cgi?id=132071
     14        http://trac.webkit.org/changeset/167720
     15
    1162014-04-23  David Hyatt  <hyatt@apple.com>
    217
  • trunk/Source/WebCore/rendering/RenderBlock.cpp

    r167720 r167721  
    48294829RenderRegion* RenderBlock::regionAtBlockOffset(LayoutUnit blockOffset) const
    48304830{
     4831    if (isInFlowRenderFlowThread())
     4832        return 0;
     4833
    48314834    RenderFlowThread* flowThread = flowThreadContainingBlock();
    48324835    if (!flowThread || !flowThread->hasValidRegionInfo())
  • trunk/Source/WebCore/rendering/RenderFlowThread.cpp

    r167720 r167721  
    761761
    762762    startRegion = endRegion = nullptr;
    763     if (!hasValidRegionInfo() || box->isInFlowRenderFlowThread()) // We clear the ranges when we invalidate the regions.
     763    if (!hasValidRegionInfo()) // We clear the ranges when we invalidate the regions.
    764764        return false;
    765765
Note: See TracChangeset for help on using the changeset viewer.