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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-keyboard.html

Issue 2100243002: Remove non-standardize key code names from event_sender. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix inspector tests that were missed by sed 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/fast/events/inputevents/inputevent-keyboard.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-keyboard.html b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-keyboard.html
index 7c85c9173270bfdd70bed8a8dde2157cac37260b..af1fac5888379a0a4289c2417394ec6fbbcf00de 100644
--- a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-keyboard.html
+++ b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-keyboard.html
@@ -38,7 +38,7 @@ test(function() {
// Typing
testKeyDownInputType('a', [], 'insertText');
testKeyDownInputType('6', [], 'insertText');
- testKeyDownInputType('backspace', [], 'deleteContent');
+ testKeyDownInputType('Backspace', [], 'deleteContent');
testKeyDownInputType('l', ['shiftKey'], 'insertText');
testKeyDownInputType('w', ['shiftKey'], 'insertText');
@@ -50,9 +50,9 @@ test(function() {
testKeyDownInputType('z', ['ctrlKey', 'shiftKey'], 'redo');
}
// Move command should not generate input events.
- testKeyDownInputType('leftArrow', [], kNoInputEventFired);
- testKeyDownInputType('leftArrow', ['shiftKey'], kNoInputEventFired);
- testKeyDownInputType('home', [], kNoInputEventFired);
+ testKeyDownInputType('ArrowLeft', [], kNoInputEventFired);
+ testKeyDownInputType('ArrowLeft', ['shiftKey'], kNoInputEventFired);
+ testKeyDownInputType('Home', [], kNoInputEventFired);
}
}, 'Testing beforeinput inputType');
</script>

Powered by Google App Engine
This is Rietveld 408576698