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

Unified Diff: webkit/tools/test_shell/event_sending_controller.cc

Issue 518036: Fix our version of eventSender to handle keyLocation arg correctly. (Closed)
Patch Set: updated the comment Created 10 years, 11 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 | « webkit/tools/layout_tests/test_expectations.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/event_sending_controller.cc
diff --git a/webkit/tools/test_shell/event_sending_controller.cc b/webkit/tools/test_shell/event_sending_controller.cc
index 77a27d87c34aeb8536780e218cfecc413d87544a..43558dcdc9e50ae451b1f8f9547e54a3a516c62c 100644
--- a/webkit/tools/test_shell/event_sending_controller.cc
+++ b/webkit/tools/test_shell/event_sending_controller.cc
@@ -219,6 +219,15 @@ bool GetEditCommand(const WebKeyboardEvent& event, std::string* name) {
#endif
}
+// Key event location code introduced in DOM Level 3.
+// See also: http://www.w3.org/TR/DOM-Level-3-Events/#events-keyboardevents
+enum KeyLocationCode {
+ DOM_KEY_LOCATION_STANDARD = 0x00,
+ DOM_KEY_LOCATION_LEFT = 0x01,
+ DOM_KEY_LOCATION_RIGHT = 0x02,
+ DOM_KEY_LOCATION_NUMPAD = 0x03
+};
+
} // anonymous namespace
EventSendingController::EventSendingController(TestShell* shell)
@@ -579,6 +588,14 @@ void EventSendingController::keyDown(
if (needs_shift_key_modifier)
event_down.modifiers |= WebInputEvent::ShiftKey;
+ // See if KeyLocation argument is given.
+ if (args.size() >= 3 && args[2].isNumber()) {
+ int location = args[2].ToInt32();
+ if (location == DOM_KEY_LOCATION_NUMPAD) {
+ event_down.modifiers |= WebInputEvent::IsKeyPad;
+ }
+ }
+
event_char = event_up = event_down;
event_up.type = WebInputEvent::KeyUp;
// EventSendingController.m forces a layout here, with at least one
« no previous file with comments | « webkit/tools/layout_tests/test_expectations.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698