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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-mouse-events.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/forms/time-multiple-fields/time-multiple-fields-mouse-events.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-mouse-events.html b/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-mouse-events.html
index 8f24e84d0ad49be9aee906ce67a4837ad89b9632..50d089c64f249f31524ed780974b36730c4fbd32 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-mouse-events.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-mouse-events.html
@@ -51,13 +51,13 @@ onload = function() {
debug('= Focus to hour field =');
mouseMoveTo(12, 14);
mouseClick();
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '02:23');
debug('= Focus to minute field =');
mouseMoveTo(70, 14);
mouseClick();
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '02:24');
debug('= Click up part of spin button =');
@@ -74,13 +74,13 @@ onload = function() {
input.disabled = true;
mouseMoveTo(12, 14);
mouseClick();
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '02:24'); // Not changed.
input.disabled = false;
input.readOnly = true;
mouseMoveTo(12, 14);
mouseClick();
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '02:24'); // Not changed.
input.readOnly = false;

Powered by Google App Engine
This is Rietveld 408576698