⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176735 in webkit


Ignore:
Timestamp:
Dec 3, 2014, 12:10:54 PM (12 years ago)
Author:
dburkart@apple.com
Message:

Fix merge-related build failure. rdar://problem/19122588

Location:
branches/safari-600.3-branch/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-600.3-branch/Source/WebCore/ChangeLog

    r176732 r176735  
     12014-12-03  Dana Burkart  <dburkart@apple.com>
     2
     3        Fix merge-related build failure.
     4
     5        * rendering/RenderBlock.cpp:
     6        (WebCore::RenderBlock::blockSelectionGaps):
     7
    182014-12-03  Dana Burkart  <dburkart@apple.com>
    29
  • branches/safari-600.3-branch/Source/WebCore/rendering/RenderBlock.cpp

    r176732 r176735  
    20402040            lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, curr->logicalBottom(), cache);
    20412041            lastLogicalRight = logicalRightSelectionOffset(rootBlock, curr->logicalBottom(), cache);
    2042         } else if (childState != SelectionNone && is<RenderBlock>(*curr)) {
     2042        } else if (childState != SelectionNone && curr->isRenderBlock()) {
    20432043            // We must be a block that has some selected object inside it.  Go ahead and recur.
    20442044            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.