Index: Source/core/layout/LayoutBlock.cpp |
diff --git a/Source/core/layout/LayoutBlock.cpp b/Source/core/layout/LayoutBlock.cpp |
index 00fd49ac48a81fc9340041380d47c71dad147a54..d1377e4d43d5b8c600eee19e2bde5342796e9de8 100644 |
--- a/Source/core/layout/LayoutBlock.cpp |
+++ b/Source/core/layout/LayoutBlock.cpp |
@@ -1887,7 +1887,7 @@ PositionWithAffinity LayoutBlock::positionForPointWithInlineChildren(const Layou |
box = newBox; |
} |
// y coordinate is above first root line box, so return the start of the first |
- return PositionWithAffinity(positionForBox(box, true), DOWNSTREAM); |
+ return PositionWithAffinity(positionForBox(box, true)); |
} |
} |
@@ -1905,7 +1905,7 @@ PositionWithAffinity LayoutBlock::positionForPointWithInlineChildren(const Layou |
ASSERT(moveCaretToBoundary); |
InlineBox* logicallyLastBox; |
if (lastRootBoxWithChildren->getLogicalEndBoxWithNode(logicallyLastBox)) |
- return PositionWithAffinity(positionForBox(logicallyLastBox, false), DOWNSTREAM); |
+ return PositionWithAffinity(positionForBox(logicallyLastBox, false)); |
} |
// Can't reach this. We have a root line box, but it has no kids. |