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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-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/month-multiple-fields/month-multiple-fields-mouse-events.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-mouse-events.html b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-mouse-events.html
index c43268f7f3dfb55f7eed5324563e16604022c27e..7ac54b6bf4d9ff8f3641c90367fbc9cf9ce430c8 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-mouse-events.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/month-multiple-fields/month-multiple-fields-mouse-events.html
@@ -44,7 +44,7 @@ onload = function() {
debug('==> Focus on the month field.');
mouseClickOn(16, center);
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '2345-08');
mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1);
shouldBeEqualToString('input.value', '2345-09');
@@ -55,7 +55,7 @@ onload = function() {
debug('');
debug('==> Focus on the year field.');
mouseClickOn(170, center);
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '2346-08');
mouseClickOn(input.offsetWidth - spinButtonOffset, center - 1);
shouldBeEqualToString('input.value', '2347-08');
@@ -67,7 +67,7 @@ onload = function() {
debug('==> Click on a disabled field.');
input.disabled = true;
mouseClickOn(100, center);
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '2346-08');
input.disabled = false;
@@ -75,7 +75,7 @@ onload = function() {
debug('==> Click on a read-only field.');
input.readOnly = true;
mouseClickOn(12, center);
- keyDown('upArrow');
+ keyDown('ArrowUp');
shouldBeEqualToString('input.value', '2346-08');
input.readOnly = false;

Powered by Google App Engine
This is Rietveld 408576698