Changeset 156404 in webkit for trunk/Source/WebCore/rendering/RenderTableRow.cpp
- Timestamp:
- Sep 25, 2013, 10:45:59 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderTableRow.cpp
r156355 r156404 82 82 // This only happens when borders are collapsed, since they end up affecting the border sides of the cell 83 83 // itself. 84 for (RenderBox* childBox = firstChildBox(); childBox; childBox = childBox->nextSiblingBox()) { 85 if (!childBox->isTableCell()) 86 continue; 87 childBox->setChildNeedsLayout(true, MarkOnlyThis); 88 } 84 for (RenderTableCell* cell = firstCell(); cell; cell = cell->nextCell()) 85 cell->setChildNeedsLayout(true, MarkOnlyThis); 89 86 } 90 87 } … … 217 214 // table-specific hit-test method (which we should do for performance reasons anyway), 218 215 // then we can remove this check. 219 if ( cell->hasSelfPaintingLayer()) {216 if (!cell->hasSelfPaintingLayer()) { 220 217 LayoutPoint cellPoint = flipForWritingModeForChild(cell, accumulatedOffset); 221 218 if (cell->nodeAtPoint(request, result, locationInContainer, cellPoint, action)) {
Note:
See TracChangeset
for help on using the changeset viewer.