Changeset 31127 in webkit
- Timestamp:
- Mar 18, 2008, 9:13:31 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r31126 r31127 1 2008-03-18 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - eliminate RenderFlow::m_clear 6 7 * rendering/RenderBlock.cpp: 8 (WebCore::RenderBlock::layoutBlock): Removed code to set m_clear. 9 (WebCore::RenderBlock::newLine): Added a 'clear' parameter. 10 * rendering/RenderBlock.h: 11 * rendering/RenderFlow.h: 12 (WebCore::RenderFlow::RenderFlow): Removed initialization of m_clear. 13 * rendering/bidi.cpp: 14 (WebCore::RenderBlock::layoutInlineChildren): Added a local 'clear' 15 variable, passing a pointer to it to findNextLineBreak() and its value 16 to newLine(). 17 (WebCore::RenderBlock::findNextLineBreak): Added a 'clear' parameter, 18 which this method adjusts when it encounters a <br>. 19 1 20 2008-03-18 Simon Hausmann <hausmann@webkit.org> 2 21 -
trunk/WebCore/rendering/RenderBlock.cpp
r31117 r31127 542 542 m_height = 0; 543 543 m_overflowHeight = 0; 544 m_clearStatus = CNONE;545 544 546 545 // We use four values, maxTopPos, maxPosNeg, maxBottomPos, and maxBottomNeg, to track … … 2249 2248 } 2250 2249 2251 void RenderBlock::newLine( )2250 void RenderBlock::newLine(EClear clear) 2252 2251 { 2253 2252 positionNewFloats(); 2254 2253 // set y position 2255 2254 int newY = 0; 2256 switch( m_clearStatus)2255 switch(clear) 2257 2256 { 2258 2257 case CLEFT: … … 2269 2268 if (m_height < newY) 2270 2269 m_height = newY; 2271 m_clearStatus = CNONE;2272 2270 } 2273 2271 -
trunk/WebCore/rendering/RenderBlock.h
r31117 r31127 149 149 int skipWhitespace(BidiState&); 150 150 void fitBelowFloats(int widthToFit, int& availableWidth); 151 BidiIterator findNextLineBreak(BidiState& );151 BidiIterator findNextLineBreak(BidiState&, EClear* clear = 0); 152 152 RootInlineBox* constructLine(unsigned runCount, BidiRun* firstRun, BidiRun* lastRun, bool lastLine, RenderObject* endObject); 153 153 InlineFlowBox* createLineBoxes(RenderObject*); … … 311 311 312 312 protected: 313 void newLine( );313 void newLine(EClear); 314 314 virtual bool hasLineIfEmpty() const; 315 315 bool layoutOnlyPositionedObjects(); -
trunk/WebCore/rendering/RenderFlow.h
r30603 r31127 47 47 , m_childrenInline(true) 48 48 , m_firstLine(false) 49 , m_clearStatus(CNONE)50 49 , m_topMarginQuirk(false) 51 50 , m_bottomMarginQuirk(false) … … 127 126 bool m_childrenInline : 1; 128 127 bool m_firstLine : 1; 129 unsigned m_clearStatus : 2; // EClear130 128 bool m_topMarginQuirk : 1; 131 129 bool m_bottomMarginQuirk : 1; -
trunk/WebCore/rendering/bidi.cpp
r31117 r31127 867 867 BidiIterator end = start.position(); 868 868 869 if (!fullLayout && end.atEnd() && lastRootBox() && lastRootBox()->firstChild()->object()->isBR() && lastRootBox()->object()->firstChild()->style()->clear() != CNONE) { 870 m_clearStatus = lastRootBox()->object()->firstChild()->style()->clear(); 871 newLine(); 872 } 869 if (!fullLayout && end.atEnd() && lastRootBox() && lastRootBox()->firstChild()->object()->isBR() && lastRootBox()->object()->firstChild()->style()->clear() != CNONE) 870 newLine(lastRootBox()->object()->firstChild()->style()->clear()); 873 871 874 872 bool endLineMatched = false; … … 885 883 start.setPosition(BidiIterator(this, firstChild()->nextSibling(), 0)); 886 884 } 887 end = findNextLineBreak(start); 885 EClear clear = CNONE; 886 end = findNextLineBreak(start, &clear); 888 887 if (start.position().atEnd()) { 889 888 start.deleteRuns(); … … 935 934 936 935 m_firstLine = false; 937 newLine( );936 newLine(clear); 938 937 } 939 938 … … 1450 1449 } 1451 1450 1452 BidiIterator RenderBlock::findNextLineBreak(BidiState& start )1451 BidiIterator RenderBlock::findNextLineBreak(BidiState& start, EClear* clear) 1453 1452 { 1454 1453 ASSERT(start.position().block == this); … … 1527 1526 previousLineBrokeCleanly = true; 1528 1527 1529 if (!isLineEmpty) { 1530 // only check the clear status for non-empty lines. 1531 EClear clear = o->style()->clear(); 1532 if (clear != CNONE) 1533 m_clearStatus = (EClear) (m_clearStatus | clear); 1534 } 1528 if (!isLineEmpty && clear) 1529 *clear = o->style()->clear(); 1535 1530 } 1536 1531 goto end;
Note:
See TracChangeset
for help on using the changeset viewer.