diff options
Diffstat (limited to 'WebCore/dom/InputElement.h')
-rw-r--r-- | WebCore/dom/InputElement.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/dom/InputElement.h b/WebCore/dom/InputElement.h index bdd5645..d477046 100644 --- a/WebCore/dom/InputElement.h +++ b/WebCore/dom/InputElement.h @@ -26,11 +26,11 @@ namespace WebCore { +class Attribute; class Document; class Element; class Event; class InputElementData; -class MappedAttribute; class InputElement { public: @@ -80,8 +80,8 @@ protected: // This should be applied to values specified by users. static String sanitizeUserInputValue(const InputElement*, const String&, int); static void handleBeforeTextInsertedEvent(InputElementData&, InputElement*, Element*, Event*); - static void parseSizeAttribute(InputElementData&, Element*, MappedAttribute*); - static void parseMaxLengthAttribute(InputElementData&, InputElement*, Element*, MappedAttribute*); + static void parseSizeAttribute(InputElementData&, Element*, Attribute*); + static void parseMaxLengthAttribute(InputElementData&, InputElement*, Element*, Attribute*); static void updateValueIfNeeded(InputElementData&, InputElement*); static void notifyFormStateChanged(Element*); #if ENABLE(WCSS) |