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