| Index: third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt b/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt
|
| index 021e77f3d3599ed56dbcd2627eab95c0174b0939..8013045fd18741ee493477f91ed6917c7316536b 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt
|
| +++ b/third_party/WebKit/LayoutTests/fast/forms/range/range-set-attribute-expected.txt
|
| @@ -10,6 +10,10 @@ changing the max should effect value
|
| PASS input.setAttribute("max", "10"); input.value is "10"
|
| value attribute should not change the value after you set a value
|
| PASS input.value = 10; input.setAttribute("value", "5"); input.value is "10"
|
| +Updating step attribute should adjust the last value.
|
| +PASS input.value is "50"
|
| +PASS input.step = "15"; input.value is "45"
|
| +PASS input.step = "20"; input.value is "40"
|
| PASS successfullyParsed is true
|
|
|
| TEST COMPLETE
|
|
|