| Index: third_party/WebKit/LayoutTests/fast/forms/number/number-outofrange.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/number/number-outofrange.html b/third_party/WebKit/LayoutTests/fast/forms/number/number-outofrange.html
|
| index 4c1bf7d052979f97340a5cefd2ea8b0f1bb81b75..b171576c2cadcbe23a2b45295b505995262d589f 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/number/number-outofrange.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/number/number-outofrange.html
|
| @@ -21,21 +21,21 @@ function sendKeyEvent(element, key)
|
| }
|
|
|
| debug('Pressing the down arrow key on an input field of which value is lower than the minimum:');
|
| -sendKeyEvent(lower, 'downArrow');
|
| +sendKeyEvent(lower, 'ArrowDown');
|
| var unchanged = "-10";
|
| shouldBe('lower.value', 'unchanged');
|
|
|
| debug('Pressing the up arrow key on the input:');
|
| -sendKeyEvent(lower, 'upArrow');
|
| +sendKeyEvent(lower, 'ArrowUp');
|
| shouldBe('lower.value', 'lower.min');
|
|
|
| debug('Pressing the up arrow key on an input field of which value is higher than the maximum:');
|
| -sendKeyEvent(higher, 'upArrow');
|
| +sendKeyEvent(higher, 'ArrowUp');
|
| unchanged = "200";
|
| shouldBe('higher.value', 'unchanged');
|
|
|
| debug('Pressing the down arrow key on the input:');
|
| -sendKeyEvent(higher, 'downArrow');
|
| +sendKeyEvent(higher, 'ArrowDown');
|
| shouldBe('higher.value', 'higher.max');
|
|
|
| parent.innerHTML = '';
|
|
|