| 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>
|
|
|