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

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

Issue 15320003: Fix WebInputEventConversion conversion from Platform to Web KeyboardEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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 | « no previous file | LayoutTests/inspector-protocol/input/dispatchKeyEvent-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector-protocol/input/dispatchKeyEvent.html
diff --git a/LayoutTests/inspector-protocol/input/dispatchKeyEvent.html b/LayoutTests/inspector-protocol/input/dispatchKeyEvent.html
index 914e32a7fcfc95ff51bce253cb4e972c56675982..77048e0bb3103f9d09e18d949ef7fac917a27dc4 100644
--- a/LayoutTests/inspector-protocol/input/dispatchKeyEvent.html
+++ b/LayoutTests/inspector-protocol/input/dispatchKeyEvent.html
@@ -36,18 +36,23 @@ function test()
{
"type": "rawKeyDown",
"windowsVirtualKeyCode": 65, // VK_A
- "keyIdentifier": "U+0041",
+ "keyIdentifier": "U+0041"
},
{
"type": "char",
"modifiers": 8, // shift
"text": "A",
- "unmodifiedText": "a",
+ "unmodifiedText": "a"
},
{
"type": "keyUp",
"windowsVirtualKeyCode": 65,
"keyIdentifier": "U+0041"
+ },
+ {
+ "type": "char",
+ "text": "\u05E9", // Hebrew Shin (sh)
+ "unmodifiedText": "\u05E9"
}
];
« no previous file with comments | « no previous file | LayoutTests/inspector-protocol/input/dispatchKeyEvent-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698