Index: Source/core/html/HTMLLabelElement.h |
diff --git a/Source/core/html/HTMLLabelElement.h b/Source/core/html/HTMLLabelElement.h |
index d050f9cdafa75df90b2b3c11bc329f80d9bf9e9c..8b1278eee1ca15748a95afb990f2f6f6d9b9e6e2 100644 |
--- a/Source/core/html/HTMLLabelElement.h |
+++ b/Source/core/html/HTMLLabelElement.h |
@@ -47,6 +47,10 @@ private: |
virtual bool isInteractiveContent() const OVERRIDE; |
virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE; |
+ virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE; |
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
+ virtual void removedFrom(ContainerNode*) OVERRIDE; |
+ |
// Overridden to update the hover/active state of the corresponding control. |
virtual void setActive(bool = true) OVERRIDE; |
virtual void setHovered(bool = true) OVERRIDE; |
@@ -55,6 +59,8 @@ private: |
virtual void defaultEventHandler(Event*) OVERRIDE; |
virtual void focus(bool restorePreviousSelection, FocusType) OVERRIDE; |
+ |
+ void updateLabel(TreeScope&, const AtomicString& oldForAttributeValue, const AtomicString& newForAttributeValue); |
}; |
} //namespace |