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

Unified Diff: Source/web/WebInputEventConversion.cpp

Issue 20034002: Add support for KeyboardEvent.location attribute (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix nits Created 7 years, 5 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
Index: Source/web/WebInputEventConversion.cpp
diff --git a/Source/web/WebInputEventConversion.cpp b/Source/web/WebInputEventConversion.cpp
index 6e21fb8a86413ae443c6e80deb55296ac3867003..95c5a93211e55c6cc1d3c4e9ac8b40c32a50fe75 100644
--- a/Source/web/WebInputEventConversion.cpp
+++ b/Source/web/WebInputEventConversion.cpp
@@ -602,11 +602,11 @@ WebKeyboardEventBuilder::WebKeyboardEventBuilder(const KeyboardEvent& event)
return; // Skip all other keyboard events.
modifiers = getWebInputModifiers(event);
- if (event.keyLocation() == KeyboardEvent::DOMKeyLocationNumpad)
+ if (event.location() == KeyboardEvent::DOMKeyLocationNumpad)
modifiers |= WebInputEvent::IsKeyPad;
- else if (event.keyLocation() == KeyboardEvent::DOMKeyLocationLeft)
+ else if (event.location() == KeyboardEvent::DOMKeyLocationLeft)
modifiers |= WebInputEvent::IsLeft;
- else if (event.keyLocation() == KeyboardEvent::DOMKeyLocationRight)
+ else if (event.location() == KeyboardEvent::DOMKeyLocationRight)
modifiers |= WebInputEvent::IsRight;
timeStampSeconds = event.timeStamp() / millisPerSecond;

Powered by Google App Engine
This is Rietveld 408576698