| Index: third_party/WebKit/Source/core/html/HTMLMeterElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLMeterElement.cpp b/third_party/WebKit/Source/core/html/HTMLMeterElement.cpp
|
| index 596d69a42476585d675f1b9648a392f02515bea6..242cf92c84abcb4a017f1e3d64f12a26bcb38415 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLMeterElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLMeterElement.cpp
|
| @@ -153,8 +153,8 @@ HTMLMeterElement::GaugeRegion HTMLMeterElement::getGaugeRegion() const {
|
| }
|
|
|
| // The optimum range stays between high and low.
|
| - // According to the standard, <meter> never show GaugeRegionEvenLessGood in this case
|
| - // because the value is never less or greater than min or max.
|
| + // According to the standard, <meter> never show GaugeRegionEvenLessGood in
|
| + // this case because the value is never less or greater than min or max.
|
| if (lowValue <= theValue && theValue <= highValue)
|
| return GaugeRegionOptimum;
|
| return GaugeRegionSuboptimal;
|
|
|