Changeset 156816 in webkit for trunk/Source/WebCore/rendering/RenderTable.cpp
- Timestamp:
- Oct 2, 2013, 7:26:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderTable.cpp
r156738 r156816 415 415 if (logicalWidth() != oldLogicalWidth) { 416 416 for (unsigned i = 0; i < m_captions.size(); i++) 417 m_captions[i]->setNeedsLayout( true,MarkOnlyThis);417 m_captions[i]->setNeedsLayout(MarkOnlyThis); 418 418 } 419 419 // FIXME: The optimisation below doesn't work since the internal table … … 435 435 RenderTableSection* section = toRenderTableSection(child); 436 436 if (m_columnLogicalWidthChanged) 437 section->setChildNeedsLayout( true,MarkOnlyThis);437 section->setChildNeedsLayout(MarkOnlyThis); 438 438 section->layoutIfNeeded(); 439 439 totalSectionLogicalHeight += section->calcRowLogicalHeight(); … … 557 557 558 558 m_columnLogicalWidthChanged = false; 559 setNeedsLayout(false);559 clearNeedsLayout(); 560 560 } 561 561
Note:
See TracChangeset
for help on using the changeset viewer.