| Index: third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| index d9668833b37f1dae5e339b11570f612d5801d127..f13ec06d29db4aff8c77b11a58c20426591d6740 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| @@ -112,7 +112,8 @@ double HTMLProgressElement::max() const {
|
| }
|
|
|
| void HTMLProgressElement::setMax(double max) {
|
| - // FIXME: The specification says we should ignore the input value if it is inferior or equal to 0.
|
| + // FIXME: The specification says we should ignore the input value if it is
|
| + // inferior or equal to 0.
|
| setFloatingPointAttribute(maxAttr, max > 0 ? max : 1);
|
| }
|
|
|
|
|