Changeset 29885 in webkit
- Timestamp:
- Jan 31, 2008, 10:34:17 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r29884 r29885 1 2008-01-31 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Dave Hyatt. 4 5 - pixel test for http://bugs.webkit.org/show_bug.cgi?id=17107 6 <rdar://problem/5716722> REGRESSION (r29834): Article text on redhat.com magazine site appears to be painting twice 7 8 * fast/block/float/intruding-painted-twice.html: Added. 9 * platform/mac-leopard/fast/block/float/intruding-painted-twice-expected.checksum: Added. 10 * platform/mac-leopard/fast/block/float/intruding-painted-twice-expected.png: Added. 11 * platform/mac/fast/block/float/intruding-painted-twice-expected.txt: Added. 12 1 13 2008-01-30 Dan Bernstein <mitz@apple.com> 2 14 -
trunk/WebCore/ChangeLog
r29884 r29885 1 2008-01-31 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Dave Hyatt. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=17107 6 <rdar://problem/5716722> REGRESSION (r29834): Article text on redhat.com magazine site appears to be painting twice 7 8 Test: fast/block/float/intruding-painted-twice.html 9 10 * rendering/RenderBlock.cpp: 11 (WebCore::RenderBlock::layoutBlock): Pass 'false' for the new 12 makeChildPaintOtherFloats parameter to addOverhangingFloats() because at 13 this point we are only taking away floats from the child. 14 (WebCore::RenderBlock::layoutBlockChildren): Pass 'true' for the new 15 makeChildPaintOtherFloats parameter to addOverhangingFloats() iff the 16 child was not laid out again. Only in that case, it may have overhanging 17 floats that it does not paint because they used to be overhanging from 18 the parent, but now they are not. 19 (WebCore::RenderBlock::addOverhangingFloats): Refined the conditions for 20 making the child paint the float: require that the float be a descendant 21 of the child (the other case is when it intrudes into the child from 22 another sibling) and that it does not have a layer (in which case it 23 paints itself). In addition, do the check only if the caller passed 24 'true' for the makeChildPaintOtherFloats parameter. 25 * rendering/RenderBlock.h: 26 1 27 2008-01-30 Dan Bernstein <mitz@apple.com> 2 28 -
trunk/WebCore/rendering/RenderBlock.cpp
r29834 r29885 604 604 RenderBlock* block = static_cast<RenderBlock*>(child); 605 605 if (block->floatBottom() + block->yPos() > m_height) 606 addOverhangingFloats(block, -block->xPos(), -block->yPos() );606 addOverhangingFloats(block, -block->xPos(), -block->yPos(), false); 607 607 } 608 608 } … … 1226 1226 previousFloatBottom = max(previousFloatBottom, oldRect.y() + static_cast<RenderBlock*>(child)->floatBottom()); 1227 1227 1228 child->layoutIfNeeded(); 1228 bool childNeededLayout = child->needsLayout(); 1229 if (childNeededLayout) 1230 child->layout(); 1229 1231 1230 1232 // Now determine the correct ypos based off examination of collapsing margin … … 1252 1254 // If the child has overhanging floats that intrude into following siblings (or possibly out 1253 1255 // of this block), then the parent gets notified of the floats now. 1254 maxFloatBottom = max(maxFloatBottom, addOverhangingFloats(static_cast<RenderBlock *>(child), -child->xPos(), -child->yPos() ));1256 maxFloatBottom = max(maxFloatBottom, addOverhangingFloats(static_cast<RenderBlock *>(child), -child->xPos(), -child->yPos(), !childNeededLayout)); 1255 1257 1256 1258 // Update our overflow in case the child spills out the block. … … 2648 2650 } 2649 2651 2650 int RenderBlock::addOverhangingFloats(RenderBlock* child, int xoff, int yoff )2652 int RenderBlock::addOverhangingFloats(RenderBlock* child, int xoff, int yoff, bool makeChildPaintOtherFloats) 2651 2653 { 2652 2654 // Prevent floats from being added to the canvas by the root element, e.g., <html>. … … 2690 2692 m_floatingObjects->append(floatingObj); 2691 2693 } 2692 } else 2694 } else if (makeChildPaintOtherFloats && r->noPaint && !r->node->hasLayer() && r->node->isDescendantOf(child)) 2695 // The float is not overhanging from this block, so if it is a descendant of the child, the child should 2696 // paint it (the other case is that it is intruding into the child), unless it has its own layer. 2697 // If makeChildPaintOtherFloats is false, it means that the child must already know about all the floats 2698 // it should paint. 2693 2699 r->noPaint = false; 2694 2700 -
trunk/WebCore/rendering/RenderBlock.h
r27486 r29885 177 177 virtual bool hasOverhangingFloats() { return !hasColumns() && floatBottom() > m_height; } 178 178 void addIntrudingFloats(RenderBlock* prev, int xoffset, int yoffset); 179 int addOverhangingFloats(RenderBlock* child, int xoffset, int yoffset );179 int addOverhangingFloats(RenderBlock* child, int xoffset, int yoffset, bool makeChildPaintOtherFloats); 180 180 181 181 int nearestFloatBottom(int height) const;
Note:
See TracChangeset
for help on using the changeset viewer.