Changeset 176735 in webkit
- Timestamp:
- Dec 3, 2014, 12:10:54 PM (12 years ago)
- Location:
- branches/safari-600.3-branch/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
rendering/RenderBlock.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-600.3-branch/Source/WebCore/ChangeLog
r176732 r176735 1 2014-12-03 Dana Burkart <dburkart@apple.com> 2 3 Fix merge-related build failure. 4 5 * rendering/RenderBlock.cpp: 6 (WebCore::RenderBlock::blockSelectionGaps): 7 1 8 2014-12-03 Dana Burkart <dburkart@apple.com> 2 9 -
branches/safari-600.3-branch/Source/WebCore/rendering/RenderBlock.cpp
r176732 r176735 2040 2040 lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, curr->logicalBottom(), cache); 2041 2041 lastLogicalRight = logicalRightSelectionOffset(rootBlock, curr->logicalBottom(), cache); 2042 } else if (childState != SelectionNone && is<RenderBlock>(*curr)) {2042 } else if (childState != SelectionNone && curr->isRenderBlock()) { 2043 2043 // We must be a block that has some selected object inside it. Go ahead and recur. 2044 2044 result.unite(toRenderBlock(curr)->selectionGaps(rootBlock, rootBlockPhysicalPosition, LayoutSize(offsetFromRootBlock.width() + curr->x(), offsetFromRootBlock.height() + curr->y()),
Note:
See TracChangeset
for help on using the changeset viewer.