Changeset 103206 in webkit


Ignore:
Timestamp:
Dec 18, 2011, 6:51:46 PM (13 years ago)
Author:
mitz@apple.com
Message:

Positioned Floats: Assertion hit in fast/block/positioning/positioned-float-layout-after-image-load.html
https://bugs.webkit.org/show_bug.cgi?id=67759

Reviewed by Darin Adler.

Source/WebCore:

Test: fast/block/positioning/positioned-float-layout-after-image-load.html

Positioned floats are both floating and positioned. Made the following functions treat them as
positioned rather than as floats by reordering code.

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::LineBreaker::skipTrailingWhitespace):
(WebCore::RenderBlock::LineBreaker::skipLeadingWhitespace):
(WebCore::RenderBlock::LineBreaker::nextLineBreak):

LayoutTests:

Re-added this test from r94695.

  • fast/block/positioning/positioned-float-layout-after-image-load-expected.txt: Copied from LayoutTests/fast/block/positioning/positioned-float-layout-after-image-load-expected.txt.
  • fast/block/positioning/positioned-float-layout-after-image-load.html: Copied from LayoutTests/fast/block/positioning/positioned-float-layout-after-image-load.html.
  • fast/block/positioning/resources/positioned-float-layout-after-image-load-2.html: Copied from LayoutTests/fast/block/positioning/resources/positioned-float-layout-after-image-load-2.html.
Location:
trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r103204 r103206  
     12011-12-18  Dan Bernstein  <mitz@apple.com>
     2
     3        Positioned Floats: Assertion hit in fast/block/positioning/positioned-float-layout-after-image-load.html
     4        https://bugs.webkit.org/show_bug.cgi?id=67759
     5
     6        Reviewed by Darin Adler.
     7
     8        Re-added this test from r94695.
     9
     10        * fast/block/positioning/positioned-float-layout-after-image-load-expected.txt: Copied from LayoutTests/fast/block/positioning/positioned-float-layout-after-image-load-expected.txt.
     11        * fast/block/positioning/positioned-float-layout-after-image-load.html: Copied from LayoutTests/fast/block/positioning/positioned-float-layout-after-image-load.html.
     12        * fast/block/positioning/resources/positioned-float-layout-after-image-load-2.html: Copied from LayoutTests/fast/block/positioning/resources/positioned-float-layout-after-image-load-2.html.
     13
    1142011-12-18  Hajime Morrita  <morrita@chromium.org>
    215
  • trunk/Source/WebCore/ChangeLog

    r103205 r103206  
     12011-12-18  Dan Bernstein  <mitz@apple.com>
     2
     3        Positioned Floats: Assertion hit in fast/block/positioning/positioned-float-layout-after-image-load.html
     4        https://bugs.webkit.org/show_bug.cgi?id=67759
     5
     6        Reviewed by Darin Adler.
     7
     8        Test: fast/block/positioning/positioned-float-layout-after-image-load.html
     9
     10        Positioned floats are both floating and positioned. Made the following functions treat them as
     11        positioned rather than as floats by reordering code.
     12
     13        * rendering/RenderBlockLineLayout.cpp:
     14        (WebCore::RenderBlock::LineBreaker::skipTrailingWhitespace):
     15        (WebCore::RenderBlock::LineBreaker::skipLeadingWhitespace):
     16        (WebCore::RenderBlock::LineBreaker::nextLineBreak):
     17
    1182011-12-18  Benjamin Poulain  <bpoulain@apple.com>
    219
  • trunk/Source/WebCore/rendering/RenderBlockLineLayout.cpp

    r102875 r103206  
    18621862    while (!iterator.atEnd() && !requiresLineBox(iterator, lineInfo, TrailingWhitespace)) {
    18631863        RenderObject* object = iterator.m_obj;
    1864         if (object->isFloating()) {
     1864        if (object->isPositioned())
     1865            setStaticPositions(m_block, toRenderBox(object));
     1866        else if (object->isFloating())
    18651867            m_block->insertFloatingObject(toRenderBox(object));
    1866         } else if (object->isPositioned())
    1867             setStaticPositions(m_block, toRenderBox(object));
    18681868        iterator.increment();
    18691869    }
     
    18751875    while (!resolver.position().atEnd() && !requiresLineBox(resolver.position(), lineInfo, LeadingWhitespace)) {
    18761876        RenderObject* object = resolver.position().m_obj;
    1877         if (object->isFloating())
     1877        if (object->isPositioned())
     1878            setStaticPositions(m_block, toRenderBox(object));
     1879        else if (object->isFloating())
    18781880            m_block->positionNewFloatOnLine(m_block->insertFloatingObject(toRenderBox(object)), lastFloatFromPreviousLine, lineInfo, width);
    1879         else if (object->isPositioned())
    1880             setStaticPositions(m_block, toRenderBox(object));
    18811881        resolver.increment();
    18821882    }
     
    21572157        }
    21582158
    2159         if (current.m_obj->isFloating()) {
     2159        if (current.m_obj->isPositioned()) {
     2160            // If our original display wasn't an inline type, then we can
     2161            // go ahead and determine our static inline position now.
     2162            RenderBox* box = toRenderBox(current.m_obj);
     2163            bool isInlineType = box->style()->isOriginalDisplayInlineType();
     2164            if (!isInlineType)
     2165                m_block->setStaticInlinePositionForChild(box, m_block->logicalHeight(), m_block->startOffsetForContent(m_block->logicalHeight()));
     2166            else  {
     2167                // If our original display was an INLINE type, then we can go ahead
     2168                // and determine our static y position now.
     2169                box->layer()->setStaticBlockPosition(m_block->logicalHeight());
     2170            }
     2171
     2172            // If we're ignoring spaces, we have to stop and include this object and
     2173            // then start ignoring spaces again.
     2174            if (isInlineType || current.m_obj->container()->isRenderInline()) {
     2175                if (ignoringSpaces) {
     2176                    ignoreStart.m_obj = current.m_obj;
     2177                    ignoreStart.m_pos = 0;
     2178                    addMidpoint(lineMidpointState, ignoreStart); // Stop ignoring spaces.
     2179                    addMidpoint(lineMidpointState, ignoreStart); // Start ignoring again.
     2180                }
     2181                trailingObjects.appendBoxIfNeeded(box);
     2182            } else
     2183                m_positionedObjects.append(box);
     2184        } else if (current.m_obj->isFloating()) {
    21602185            RenderBox* floatBox = toRenderBox(current.m_obj);
    21612186            FloatingObject* f = m_block->insertFloatingObject(floatBox);
     
    21712196            } else
    21722197                floatsFitOnLine = false;
    2173         } else if (current.m_obj->isPositioned()) {
    2174             // If our original display wasn't an inline type, then we can
    2175             // go ahead and determine our static inline position now.
    2176             RenderBox* box = toRenderBox(current.m_obj);
    2177             bool isInlineType = box->style()->isOriginalDisplayInlineType();
    2178             if (!isInlineType)
    2179                 m_block->setStaticInlinePositionForChild(box, m_block->logicalHeight(), m_block->startOffsetForContent(m_block->logicalHeight()));
    2180             else  {
    2181                 // If our original display was an INLINE type, then we can go ahead
    2182                 // and determine our static y position now.
    2183                 box->layer()->setStaticBlockPosition(m_block->logicalHeight());
    2184             }
    2185 
    2186             // If we're ignoring spaces, we have to stop and include this object and
    2187             // then start ignoring spaces again.
    2188             if (isInlineType || current.m_obj->container()->isRenderInline()) {
    2189                 if (ignoringSpaces) {
    2190                     ignoreStart.m_obj = current.m_obj;
    2191                     ignoreStart.m_pos = 0;
    2192                     addMidpoint(lineMidpointState, ignoreStart); // Stop ignoring spaces.
    2193                     addMidpoint(lineMidpointState, ignoreStart); // Start ignoring again.
    2194                 }
    2195                 trailingObjects.appendBoxIfNeeded(box);
    2196             } else
    2197                 m_positionedObjects.append(box);
    21982198        } else if (current.m_obj->isRenderInline()) {
    21992199            // Right now, we should only encounter empty inlines here.
Note: See TracChangeset for help on using the changeset viewer.