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

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

Issue 2469483002: [InputEvent] Add prefixes 'history*' and 'format*' to |inputType| (Closed)
Patch Set: CL format Created 4 years, 1 month 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 7bf4b05cdc960b0f754e16b7ed3ed4a30d384b6b..0b58787862f9e4a9d6d12928a3dca062c14dee79 100644
--- a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-keyboard.html
+++ b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-keyboard.html
@@ -76,8 +76,8 @@ test(function() {
// Keyboard commands
if (!isMacOS) {
// MacOS's eventSender does not work on hot keys other than arrows.
- testKeyDownInputType('z', ['ctrlKey'], 'undo');
- testKeyDownInputType('z', ['ctrlKey', 'shiftKey'], 'redo');
+ testKeyDownInputType('z', ['ctrlKey'], 'historyUndo');
+ testKeyDownInputType('z', ['ctrlKey', 'shiftKey'], 'historyRedo');
}
// Move command should not generate input events.
testKeyDownInputType('ArrowLeft', [], NO_INPUT_EVENT_FIRED);

Powered by Google App Engine
This is Rietveld 408576698