| Index: Source/WebCore/html/HTMLFormControlElement.cpp
|
| ===================================================================
|
| --- Source/WebCore/html/HTMLFormControlElement.cpp (revision 78154)
|
| +++ Source/WebCore/html/HTMLFormControlElement.cpp (working copy)
|
| @@ -165,6 +165,18 @@
|
| HTMLElement::removedFromTree(deep);
|
| }
|
|
|
| +void HTMLFormControlElement::insertedIntoDocument()
|
| +{
|
| + HTMLElement::insertedIntoDocument();
|
| + FormAssociatedElement::insertedIntoDocument();
|
| +}
|
| +
|
| +void HTMLFormControlElement::removedFromDocument()
|
| +{
|
| + HTMLElement::removedFromDocument();
|
| + FormAssociatedElement::removedFromDocument();
|
| +}
|
| +
|
| const AtomicString& HTMLFormControlElement::formControlName() const
|
| {
|
| const AtomicString& name = fastGetAttribute(nameAttr);
|
|
|