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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent-focus.html

Issue 2045603002: Handle the "key" field as opposed to keyIdentifier field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove initialization of the view Created 4 years, 6 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: third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent-focus.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent-focus.html b/third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent-focus.html
index 8a49686476fa7c57b865c449173183a0e6d4c2e1..36d7c4cb63faa76fd64460bd89d1203257bb8e31 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent-focus.html
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/input/dispatchKeyEvent-focus.html
@@ -54,7 +54,8 @@ function test()
InspectorTest.sendCommand("Input.dispatchKeyEvent", {
"type": "rawKeyDown",
"windowsVirtualKeyCode": 9,
- "keyIdentifier": "U+0009"
+ "keyIdentifier": "U+0009",
+ "key": "Tab",
});
InspectorTest.sendCommand("Input.dispatchKeyEvent", {
"type": "char"
@@ -62,7 +63,8 @@ function test()
InspectorTest.sendCommand("Input.dispatchKeyEvent", {
"type": "keyUp",
"windowsVirtualKeyCode": 9,
- "keyIdentifier": "U+0009"
+ "keyIdentifier": "U+0009",
+ "key": "Tab",
});
}
}

Powered by Google App Engine
This is Rietveld 408576698