Changeset 103206 in webkit
- Timestamp:
- Dec 18, 2011, 6:51:46 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r103204 r103206 1 2011-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 1 14 2011-12-18 Hajime Morrita <morrita@chromium.org> 2 15 -
trunk/Source/WebCore/ChangeLog
r103205 r103206 1 2011-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 1 18 2011-12-18 Benjamin Poulain <bpoulain@apple.com> 2 19 -
trunk/Source/WebCore/rendering/RenderBlockLineLayout.cpp
r102875 r103206 1862 1862 while (!iterator.atEnd() && !requiresLineBox(iterator, lineInfo, TrailingWhitespace)) { 1863 1863 RenderObject* object = iterator.m_obj; 1864 if (object->isFloating()) { 1864 if (object->isPositioned()) 1865 setStaticPositions(m_block, toRenderBox(object)); 1866 else if (object->isFloating()) 1865 1867 m_block->insertFloatingObject(toRenderBox(object)); 1866 } else if (object->isPositioned())1867 setStaticPositions(m_block, toRenderBox(object));1868 1868 iterator.increment(); 1869 1869 } … … 1875 1875 while (!resolver.position().atEnd() && !requiresLineBox(resolver.position(), lineInfo, LeadingWhitespace)) { 1876 1876 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()) 1878 1880 m_block->positionNewFloatOnLine(m_block->insertFloatingObject(toRenderBox(object)), lastFloatFromPreviousLine, lineInfo, width); 1879 else if (object->isPositioned())1880 setStaticPositions(m_block, toRenderBox(object));1881 1881 resolver.increment(); 1882 1882 } … … 2157 2157 } 2158 2158 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()) { 2160 2185 RenderBox* floatBox = toRenderBox(current.m_obj); 2161 2186 FloatingObject* f = m_block->insertFloatingObject(floatBox); … … 2171 2196 } else 2172 2197 floatsFitOnLine = false; 2173 } else if (current.m_obj->isPositioned()) {2174 // If our original display wasn't an inline type, then we can2175 // 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 ahead2182 // 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 and2187 // 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 } else2197 m_positionedObjects.append(box);2198 2198 } else if (current.m_obj->isRenderInline()) { 2199 2199 // Right now, we should only encounter empty inlines here.
Note:
See TracChangeset
for help on using the changeset viewer.