Changeset 156816 in webkit for trunk/Source/WebCore/rendering/RenderTableCell.cpp
- Timestamp:
- Oct 2, 2013, 7:26:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderTableCell.cpp
r156622 r156816 219 219 // doesn't change the logical height. 220 220 if (intrinsicPaddingBefore != oldIntrinsicPaddingBefore || intrinsicPaddingAfter != oldIntrinsicPaddingAfter) 221 setNeedsLayout( true,MarkOnlyThis);221 setNeedsLayout(MarkOnlyThis); 222 222 } 223 223 … … 231 231 return; 232 232 233 setNeedsLayout( true,MarkOnlyThis);234 row()->setChildNeedsLayout( true,MarkOnlyThis);233 setNeedsLayout(MarkOnlyThis); 234 row()->setChildNeedsLayout(MarkOnlyThis); 235 235 236 236 if (!table()->selfNeedsLayout() && checkForRepaintDuringLayout()) … … 256 256 int newIntrinsicPaddingBefore = max<LayoutUnit>(0, intrinsicPaddingBefore() - max<LayoutUnit>(0, cellBaselinePosition() - oldCellBaseline)); 257 257 setIntrinsicPaddingBefore(newIntrinsicPaddingBefore); 258 setNeedsLayout( true,MarkOnlyThis);258 setNeedsLayout(MarkOnlyThis); 259 259 layoutBlock(cellWidthChanged()); 260 260 }
Note:
See TracChangeset
for help on using the changeset viewer.