Index: Source/web/WebViewImpl.cpp |
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp |
index 5e21123d026f58b4ec1f0cfb3f5fde7051ac52ba..e7b70caace8ea4eb514657276a57b31ee97648bd 100644 |
--- a/Source/web/WebViewImpl.cpp |
+++ b/Source/web/WebViewImpl.cpp |
@@ -963,6 +963,7 @@ bool WebViewImpl::handleKeyEvent(const WebKeyboardEvent& event) |
LocalFrame* frame = toLocalFrame(focusedFrame.get()); |
PlatformKeyboardEventBuilder evt(event); |
+ evt.setKeyboardEventDOMCodeValue(m_client->keyboardDOMCodeValue(evt.domCode())); |
Wez
2015/01/08 01:14:48
It reads very oddly to be passing evt.domCode() in
Habib Virji
2015/01/12 15:34:17
I have deferred it, please have a look. It now hap
Wez
2015/01/17 02:35:10
SGTM - please check w/ e.g. rbyers@ that the frame
|
if (frame->eventHandler().keyEvent(evt)) { |
if (WebInputEvent::RawKeyDown == event.type) { |