| Index: third_party/WebKit/Source/core/html/forms/StepRangeTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/StepRangeTest.cpp b/third_party/WebKit/Source/core/html/forms/StepRangeTest.cpp
|
| index ea7509b4c779435196d7a873a0522476d25c64c1..cca25cf831039054eca40b9946b8f21499e98e04 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/StepRangeTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/StepRangeTest.cpp
|
| @@ -11,7 +11,7 @@ namespace blink {
|
| TEST(StepRangeTest, ClampValueWithOutStepMatchedValue)
|
| {
|
| // <input type=range value=200 min=0 max=100 step=1000>
|
| - StepRange stepRange(Decimal(200), Decimal(0), Decimal(100), Decimal(1000), StepRange::StepDescription());
|
| + StepRange stepRange(Decimal(200), Decimal(0), Decimal(100), true, Decimal(1000), StepRange::StepDescription());
|
|
|
| EXPECT_EQ(Decimal(100), stepRange.clampValue(Decimal(200)));
|
| EXPECT_EQ(Decimal(0), stepRange.clampValue(Decimal(-100)));
|
|
|