Index: Source/core/html/HTMLFormControlElement.cpp |
diff --git a/Source/core/html/HTMLFormControlElement.cpp b/Source/core/html/HTMLFormControlElement.cpp |
index 9bc9d1d066208c6f0da2f899a2b25720ddcf877d..c50eabe8027aa0fd66f47dd61d270c3abc5d6004 100644 |
--- a/Source/core/html/HTMLFormControlElement.cpp |
+++ b/Source/core/html/HTMLFormControlElement.cpp |
@@ -69,6 +69,12 @@ HTMLFormControlElement::~HTMLFormControlElement() |
#endif |
} |
+void HTMLFormControlElement::trace(Visitor* visitor) |
+{ |
+ FormAssociatedElement::trace(visitor); |
+ LabelableElement::trace(visitor); |
+} |
+ |
String HTMLFormControlElement::formEnctype() const |
{ |
const AtomicString& formEnctypeAttr = fastGetAttribute(formenctypeAttr); |
@@ -418,7 +424,7 @@ void HTMLFormControlElement::hideVisibleValidationMessage() |
m_validationMessage->requestToHideMessage(); |
} |
-bool HTMLFormControlElement::checkValidity(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls) |
+bool HTMLFormControlElement::checkValidity(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls) |
{ |
if (!willValidate() || isValidFormControlElement()) |
return true; |