| Index: third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
|
| index 8f801256185cd14fe8c6398aae968acc2eede131..a3d83420b2bb02e3b315cc7078b5f17e818978f7 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTextAreaElement.cpp
|
| @@ -147,9 +147,10 @@ void HTMLTextAreaElement::collectStyleForPresentationAttribute(
|
| }
|
| }
|
|
|
| -void HTMLTextAreaElement::parseAttribute(const QualifiedName& name,
|
| - const AtomicString& oldValue,
|
| - const AtomicString& value) {
|
| +void HTMLTextAreaElement::parseAttribute(
|
| + const AttributeModificationParams& params) {
|
| + const QualifiedName& name = params.name;
|
| + const AtomicString& value = params.newValue;
|
| if (name == rowsAttr) {
|
| unsigned rows = 0;
|
| if (value.isEmpty() || !parseHTMLNonNegativeInteger(value, rows) ||
|
| @@ -200,7 +201,7 @@ void HTMLTextAreaElement::parseAttribute(const QualifiedName& name,
|
| UseCounter::count(document(), UseCounter::TextAreaMinLength);
|
| setNeedsValidityCheck();
|
| } else {
|
| - TextControlElement::parseAttribute(name, oldValue, value);
|
| + TextControlElement::parseAttribute(params);
|
| }
|
| }
|
|
|
|
|