Changeset 27486 in webkit
- Timestamp:
- Nov 6, 2007, 1:03:35 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r27485 r27486 1 2007-11-06 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Antti Koivisto and Dave Hyatt. 4 5 - test for <rdar://problem/5582961> Incorrect layout and floating object list corruption when CSS decreases a block's height 6 7 * fast/block/float/overhanging-after-height-decrease.html: Added. 8 * platform/mac-leopard/fast/block: Added. 9 * platform/mac-leopard/fast/block/float: Added. 10 * platform/mac-leopard/fast/block/float/overhanging-after-height-decrease-expected.checksum: Added. 11 * platform/mac-leopard/fast/block/float/overhanging-after-height-decrease-expected.png: Added. 12 * platform/mac/fast/block/float/overhanging-after-height-decrease-expected.txt: Added. 13 1 14 2007-11-05 Adele Peterson <adele@apple.com> 2 15 -
trunk/WebCore/ChangeLog
r27485 r27486 1 2007-11-06 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Antti Koivisto and Dave Hyatt. 4 5 - fix <rdar://problem/5582961> Incorrect layout and floating object list corruption when CSS decreases a block's height 6 7 Test: fast/block/float/overhanging-after-height-decrease.html 8 9 * rendering/RenderBlock.cpp: 10 (WebCore::RenderBlock::layoutBlock): If after calculating the height 11 it turns out that there are overhanging floats that were not overhanging 12 before, rescan children with overhanging floats and add them. 13 (WebCore::RenderBlock::layoutBlockChildren): Added a parameter that 14 returns the lowest float bottom of any of the children. 15 (WebCore::RenderBlock::addOverhangingFloats): Changed to return the 16 lowest float bottom. 17 * rendering/RenderBlock.h: 18 1 19 2007-11-06 Adele Peterson <adele@apple.com> 2 20 -
trunk/WebCore/rendering/RenderBlock.cpp
r27478 r27486 578 578 int repaintTop = 0; 579 579 int repaintBottom = 0; 580 int maxFloatBottom = 0; 580 581 if (childrenInline()) 581 582 layoutInlineChildren(relayoutChildren, repaintTop, repaintBottom); 582 583 else 583 layoutBlockChildren(relayoutChildren );584 layoutBlockChildren(relayoutChildren, maxFloatBottom); 584 585 585 586 // Expand our intrinsic height to encompass floats. … … 597 598 calcHeight(); 598 599 if (oldHeight != m_height) { 600 if (oldHeight > m_height && maxFloatBottom > m_height && !childrenInline()) { 601 // One of our children's floats may have become an overhanging float for us. We need to look for it. 602 for (RenderObject* child = firstChild(); child; child = child->nextSibling()) { 603 if (child->isBlockFlow() && !child->isFloatingOrPositioned()) { 604 RenderBlock* block = static_cast<RenderBlock*>(child); 605 if (block->floatBottom() + block->yPos() > m_height) 606 addOverhangingFloats(block, block->xPos(), block->yPos()); 607 } 608 } 609 } 599 610 // We have to rebalance columns to the new height. 600 611 layoutColumns(singleColumnBottom); … … 1133 1144 } 1134 1145 1135 void RenderBlock::layoutBlockChildren(bool relayoutChildren )1146 void RenderBlock::layoutBlockChildren(bool relayoutChildren, int& maxFloatBottom) 1136 1147 { 1137 1148 int top = borderTop() + paddingTop(); … … 1149 1160 1150 1161 int previousFloatBottom = 0; 1162 maxFloatBottom = 0; 1151 1163 1152 1164 RenderObject* child = firstChild(); … … 1236 1248 // If the child has overhanging floats that intrude into following siblings (or possibly out 1237 1249 // of this block), then the parent gets notified of the floats now. 1238 addOverhangingFloats(static_cast<RenderBlock *>(child), -child->xPos(), -child->yPos());1250 maxFloatBottom = max(maxFloatBottom, addOverhangingFloats(static_cast<RenderBlock *>(child), -child->xPos(), -child->yPos())); 1239 1251 1240 1252 // Update our overflow in case the child spills out the block. … … 2632 2644 } 2633 2645 2634 voidRenderBlock::addOverhangingFloats(RenderBlock* child, int xoff, int yoff)2646 int RenderBlock::addOverhangingFloats(RenderBlock* child, int xoff, int yoff) 2635 2647 { 2636 2648 // Prevent floats from being added to the canvas by the root element, e.g., <html>. 2637 2649 if (child->hasOverflowClip() || !child->containsFloats() || child->isRoot()) 2638 return; 2650 return 0; 2651 2652 int lowestFloatBottom = 0; 2639 2653 2640 2654 // Floats that will remain the child's responsiblity to paint should factor into its … … 2643 2657 DeprecatedPtrListIterator<FloatingObject> it(*child->m_floatingObjects); 2644 2658 for (FloatingObject* r; (r = it.current()); ++it) { 2645 if (child->yPos() + r->endY > height()) { 2659 int bottom = child->yPos() + r->endY; 2660 lowestFloatBottom = max(lowestFloatBottom, bottom); 2661 2662 if (bottom > height()) { 2646 2663 // If the object is not in the list, we add it now. 2647 2664 if (!containsFloat(r->node)) { … … 2677 2694 } 2678 2695 child->addVisualOverflow(floatsOverflowRect); 2696 return lowestFloatBottom; 2679 2697 } 2680 2698 -
trunk/WebCore/rendering/RenderBlock.h
r25754 r27486 111 111 virtual void layout(); 112 112 virtual void layoutBlock(bool relayoutChildren); 113 void layoutBlockChildren(bool relayoutChildren );113 void layoutBlockChildren(bool relayoutChildren, int& maxFloatBottom); 114 114 void layoutInlineChildren(bool relayoutChildren, int& repaintTop, int& repaintBottom); 115 115 … … 177 177 virtual bool hasOverhangingFloats() { return !hasColumns() && floatBottom() > m_height; } 178 178 void addIntrudingFloats(RenderBlock* prev, int xoffset, int yoffset); 179 voidaddOverhangingFloats(RenderBlock* child, int xoffset, int yoffset);179 int addOverhangingFloats(RenderBlock* child, int xoffset, int yoffset); 180 180 181 181 int nearestFloatBottom(int height) const;
Note:
See TracChangeset
for help on using the changeset viewer.