diff options
Diffstat (limited to 'WebCore/html/HTMLFormControlElement.cpp')
-rw-r--r-- | WebCore/html/HTMLFormControlElement.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/html/HTMLFormControlElement.cpp b/WebCore/html/HTMLFormControlElement.cpp index 5512236..5894999 100644 --- a/WebCore/html/HTMLFormControlElement.cpp +++ b/WebCore/html/HTMLFormControlElement.cpp @@ -25,6 +25,7 @@ #include "config.h" #include "HTMLFormControlElement.h" +#include "Attribute.h" #include "CharacterNames.h" #include "Chrome.h" #include "ChromeClient.h" @@ -38,7 +39,6 @@ #include "HTMLNames.h" #include "HTMLParser.h" #include "HTMLTokenizer.h" -#include "MappedAttribute.h" #include "Page.h" #include "RenderBox.h" #include "RenderTextControl.h" @@ -92,7 +92,7 @@ ValidityState* HTMLFormControlElement::validity() return m_validityState.get(); } -void HTMLFormControlElement::parseMappedAttribute(MappedAttribute *attr) +void HTMLFormControlElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == disabledAttr) { bool oldDisabled = m_disabled; @@ -604,7 +604,7 @@ VisibleSelection HTMLTextFormControlElement::selection() const return toRenderTextControl(renderer())->selection(cachedSelectionStart(), cachedSelectionEnd()); } -void HTMLTextFormControlElement::parseMappedAttribute(MappedAttribute* attr) +void HTMLTextFormControlElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == placeholderAttr) updatePlaceholderVisibility(true); |