| Index: Source/core/html/HTMLOutputElement.cpp
|
| diff --git a/Source/core/html/HTMLOutputElement.cpp b/Source/core/html/HTMLOutputElement.cpp
|
| index a90a2e7ac9320c374db12b4ede42bad66c89d9c2..6449baef3dd07d58b661919f31875314f510a310 100644
|
| --- a/Source/core/html/HTMLOutputElement.cpp
|
| +++ b/Source/core/html/HTMLOutputElement.cpp
|
| @@ -79,9 +79,9 @@ void HTMLOutputElement::setFor(const AtomicString& value)
|
| m_tokens->setValue(value);
|
| }
|
|
|
| -void HTMLOutputElement::childrenChanged(bool createdByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
|
| +void HTMLOutputElement::childrenChanged(const ChildrenChange& change)
|
| {
|
| - HTMLFormControlElement::childrenChanged(createdByParser, beforeChange, afterChange, childCountDelta);
|
| + HTMLFormControlElement::childrenChanged(change);
|
|
|
| if (m_isDefaultValueMode)
|
| m_defaultValue = textContent();
|
|
|