| Index: Source/core/html/HTMLTextAreaElement.cpp
|
| diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp
|
| index cf0ff63567e748af60a0e2cc3510f69bfe086100..9315c958ec162235a1c6a3583c0dc797cb0f89fa 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.cpp
|
| +++ b/Source/core/html/HTMLTextAreaElement.cpp
|
| @@ -428,10 +428,10 @@ int HTMLTextAreaElement::maxLength() const
|
| return ok && value >= 0 ? value : -1;
|
| }
|
|
|
| -void HTMLTextAreaElement::setMaxLength(int newValue, ExceptionState& es)
|
| +void HTMLTextAreaElement::setMaxLength(int newValue, ExceptionState& exceptionState)
|
| {
|
| if (newValue < 0)
|
| - es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| else
|
| setAttribute(maxlengthAttr, String::number(newValue));
|
| }
|
|
|