summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/editing/selection_controller_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/editing/selection_controller_test.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/editing/selection_controller_test.cc11
1 files changed, 7 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/editing/selection_controller_test.cc b/chromium/third_party/blink/renderer/core/editing/selection_controller_test.cc
index f8d843f9030..f07c5c78899 100644
--- a/chromium/third_party/blink/renderer/core/editing/selection_controller_test.cc
+++ b/chromium/third_party/blink/renderer/core/editing/selection_controller_test.cc
@@ -117,8 +117,9 @@ TEST_F(SelectionControllerTest, setCaretAtHitTestResult) {
" event => elem.parentNode.removeChild(elem));");
GetDocument().body()->AppendChild(script);
GetDocument().View()->UpdateAllLifecyclePhases();
+ HitTestLocation location((IntPoint(8, 8)));
GetFrame().GetEventHandler().GetSelectionController().HandleGestureLongPress(
- GetFrame().GetEventHandler().HitTestResultAtPoint(IntPoint(8, 8)));
+ GetFrame().GetEventHandler().HitTestResultAtLocation(location));
}
// For http://crbug.com/704827
@@ -132,8 +133,9 @@ TEST_F(SelectionControllerTest, setCaretAtHitTestResultWithNullPosition) {
GetDocument().View()->UpdateAllLifecyclePhases();
// Hit " " in before pseudo element of "sample".
+ HitTestLocation location((IntPoint(10, 10)));
SetCaretAtHitTestResult(
- GetFrame().GetEventHandler().HitTestResultAtPoint(IntPoint(10, 10)));
+ GetFrame().GetEventHandler().HitTestResultAtLocation(location));
EXPECT_TRUE(Selection().GetSelectionInDOMTree().IsNone());
}
@@ -166,10 +168,11 @@ TEST_F(SelectionControllerTest,
blink::WebInputEvent::GetStaticTimeStampForTests());
// Frame scale defaults to 0, which would cause a divide-by-zero problem.
mouse_event.SetFrameScale(1);
+ HitTestLocation location((IntPoint(0, 0)));
GetFrame().GetEventHandler().GetSelectionController().HandleMousePressEvent(
MouseEventWithHitTestResults(
- mouse_event,
- GetFrame().GetEventHandler().HitTestResultAtPoint(IntPoint(0, 0))));
+ mouse_event, location,
+ GetFrame().GetEventHandler().HitTestResultAtLocation(location)));
// The original bug was that this test would cause
// TextSuggestionController::HandlePotentialMisspelledWordTap() to crash. So