| Index: third_party/WebKit/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html b/third_party/WebKit/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html
|
| index 78485d981d9179402ded4f28554b562310969785..6981510cfc44c712f60d931b86e87620a7432271 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html
|
| @@ -31,12 +31,12 @@ function stepUp(value, step, max, optionalStepCount) {
|
| if (typeof optionalStepCount != "undefined")
|
| if (optionalStepCount < 0)
|
| for (var i = 0; i < -optionalStepCount; i++)
|
| - sendKey('downArrow');
|
| + sendKey('ArrowDown');
|
| else
|
| for (var i = 0; i < optionalStepCount; i++)
|
| - sendKey('upArrow');
|
| + sendKey('ArrowUp');
|
| else
|
| - sendKey('upArrow');
|
| + sendKey('ArrowUp');
|
| return input.value;
|
| }
|
|
|
| @@ -45,12 +45,12 @@ function stepDown(value, step, min, optionalStepCount) {
|
| if (typeof optionalStepCount != "undefined")
|
| if (optionalStepCount < 0)
|
| for (var i = 0; i < -optionalStepCount; i++)
|
| - sendKey('upArrow');
|
| + sendKey('ArrowUp');
|
| else
|
| for (var i = 0; i < optionalStepCount; i++)
|
| - sendKey('downArrow');
|
| + sendKey('ArrowDown');
|
| else
|
| - sendKey('downArrow');
|
| + sendKey('ArrowDown');
|
| return input.value;
|
| }
|
|
|
| @@ -62,13 +62,13 @@ function stepUpExplicitBounds(min, max, step, value, stepCount) {
|
| if (typeof stepCount !== 'undefined')
|
| if (stepCount < 0) {
|
| for (var i = 0; i < -stepCount; i++)
|
| - sendKey('downArrow');
|
| + sendKey('ArrowDown');
|
| } else {
|
| for (var i = 0; i < stepCount; i++)
|
| - sendKey('upArrow');
|
| + sendKey('ArrowUp');
|
| }
|
| else
|
| - sendKey('upArrow');
|
| + sendKey('ArrowUp');
|
| return input.value;
|
| }
|
|
|
| @@ -77,13 +77,13 @@ function stepDownExplicitBounds(min, max, step, value, stepCount) {
|
| if (typeof stepCount !== 'undefined')
|
| if (stepCount < 0) {
|
| for (var i = 0; i < -stepCount; i++)
|
| - sendKey('upArrow');
|
| + sendKey('ArrowUp');
|
| } else {
|
| for (var i = 0; i < stepCount; i++)
|
| - sendKey('downArrow');
|
| + sendKey('ArrowDown');
|
| }
|
| else
|
| - sendKey('downArrow');
|
| + sendKey('ArrowDown');
|
| return input.value;
|
| }
|
|
|
|
|