| Index: Source/core/html/HTMLTextAreaElement.cpp
|
| diff --git a/Source/core/html/HTMLTextAreaElement.cpp b/Source/core/html/HTMLTextAreaElement.cpp
|
| index 524576d93eabc0e000950b522a1ea17af2e51caf..9879df53b5459f2e3d4302d692b9314930eb8087 100644
|
| --- a/Source/core/html/HTMLTextAreaElement.cpp
|
| +++ b/Source/core/html/HTMLTextAreaElement.cpp
|
| @@ -445,7 +445,7 @@ int HTMLTextAreaElement::maxLength() const
|
| void HTMLTextAreaElement::setMaxLength(int newValue, ExceptionState& es)
|
| {
|
| if (newValue < 0)
|
| - es.throwDOMException(IndexSizeError);
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| else
|
| setAttribute(maxlengthAttr, String::number(newValue));
|
| }
|
|
|