Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: third_party/WebKit/Source/core/input/EventHandlerTest.cpp

Issue 1741753002: Fix typo variable naming in EventHandlerTest.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/input/EventHandlerTest.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandlerTest.cpp b/third_party/WebKit/Source/core/input/EventHandlerTest.cpp
index 83f688eae8f23187ea55301b851d7b0430236e47..07f172996c6cb2f2153c77f97edc105e2e4dc58a 100644
--- a/third_party/WebKit/Source/core/input/EventHandlerTest.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandlerTest.cpp
@@ -181,7 +181,7 @@ TEST_F(EventHandlerTest, draggedInlinePositionTest)
"<div style='width: 300px; height: 100px;'>"
"<span class='line' draggable='true'>abcd</span>"
"</div>");
- PlatformMouseEvent mouseDownEvent1(
+ PlatformMouseEvent mouseDownEvent(
IntPoint(262, 29),
IntPoint(329, 67),
LeftButton,
@@ -189,7 +189,7 @@ TEST_F(EventHandlerTest, draggedInlinePositionTest)
1,
PlatformEvent::Modifiers::LeftButtonDown,
WTF::monotonicallyIncreasingTime());
- document().frame()->eventHandler().handleMousePressEvent(mouseDownEvent1);
+ document().frame()->eventHandler().handleMousePressEvent(mouseDownEvent);
PlatformMouseEvent mouseMoveEvent(
IntPoint(618, 298),
@@ -217,7 +217,7 @@ TEST_F(EventHandlerTest, draggedSVGImagePositionTest)
"<rect x='100' y='100' width='100px' height='100px' fill='blue' draggable='true'/>"
"</svg>"
"</div>");
- PlatformMouseEvent mouseDownEvent1(
+ PlatformMouseEvent mouseDownEvent(
IntPoint(145, 144),
IntPoint(212, 282),
LeftButton,
@@ -225,7 +225,7 @@ TEST_F(EventHandlerTest, draggedSVGImagePositionTest)
1,
PlatformEvent::Modifiers::LeftButtonDown,
WTF::monotonicallyIncreasingTime());
- document().frame()->eventHandler().handleMousePressEvent(mouseDownEvent1);
+ document().frame()->eventHandler().handleMousePressEvent(mouseDownEvent);
PlatformMouseEvent mouseMoveEvent(
IntPoint(618, 298),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698