| Index: Source/core/html/HTMLProgressElement.cpp
|
| diff --git a/Source/core/html/HTMLProgressElement.cpp b/Source/core/html/HTMLProgressElement.cpp
|
| index 9240b8068078387be79f3a691291f95ca3829893..1b74aa0f93a9400b29afb776c47e70c07ffc9763 100644
|
| --- a/Source/core/html/HTMLProgressElement.cpp
|
| +++ b/Source/core/html/HTMLProgressElement.cpp
|
| @@ -97,10 +97,10 @@ double HTMLProgressElement::value() const
|
| return !std::isfinite(value) || value < 0 ? 0 : std::min(value, max());
|
| }
|
|
|
| -void HTMLProgressElement::setValue(double value, ExceptionState& es)
|
| +void HTMLProgressElement::setValue(double value, ExceptionState& exceptionState)
|
| {
|
| if (!std::isfinite(value)) {
|
| - es.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| return;
|
| }
|
| setAttribute(valueAttr, String::number(value >= 0 ? value : 0));
|
| @@ -112,10 +112,10 @@ double HTMLProgressElement::max() const
|
| return !std::isfinite(max) || max <= 0 ? 1 : max;
|
| }
|
|
|
| -void HTMLProgressElement::setMax(double max, ExceptionState& es)
|
| +void HTMLProgressElement::setMax(double max, ExceptionState& exceptionState)
|
| {
|
| if (!std::isfinite(max)) {
|
| - es.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| return;
|
| }
|
| setAttribute(maxAttr, String::number(max > 0 ? max : 1));
|
|
|