Index: Source/web/WebInputEventConversion.cpp |
diff --git a/Source/web/WebInputEventConversion.cpp b/Source/web/WebInputEventConversion.cpp |
index b61f9ad7e5b6ef8c1293da38536f7531f51c5149..ac156b99b7f86f47d4692fa700a9fb0ca07c2abd 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; |