| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 Result<HTMLFormControlElement> elementForAlias(const AtomicString&); | 114 Result<HTMLFormControlElement> elementForAlias(const AtomicString&); |
| 115 void addElementAlias(Handle<HTMLFormControlElement>, const AtomicString& ali
as); | 115 void addElementAlias(Handle<HTMLFormControlElement>, const AtomicString& ali
as); |
| 116 | 116 |
| 117 CheckedRadioButtons& checkedRadioButtons() { return m_checkedRadioButtons; } | 117 CheckedRadioButtons& checkedRadioButtons() { return m_checkedRadioButtons; } |
| 118 | 118 |
| 119 const Vector<FormAssociatedElement*>& associatedElements() const { return m_
associatedElements; } | 119 const Vector<FormAssociatedElement*>& associatedElements() const { return m_
associatedElements; } |
| 120 const Vector<HTMLImageElement*>& imageElements() const { return m_imageEleme
nts; } | 120 const Vector<HTMLImageElement*>& imageElements() const { return m_imageEleme
nts; } |
| 121 | 121 |
| 122 void getTextFieldValues(StringPairVector& fieldNamesAndValues) const; | 122 void getTextFieldValues(StringPairVector& fieldNamesAndValues) const; |
| 123 | 123 |
| 124 virtual void acceptHeapVisitor(Visitor*) const OVERRIDE; |
| 125 |
| 124 private: | 126 private: |
| 125 HTMLFormElement(const QualifiedName&, Handle<Document>); | 127 HTMLFormElement(const QualifiedName&, Handle<Document>); |
| 126 | 128 |
| 127 virtual bool rendererIsNeeded(const NodeRenderingContext&); | 129 virtual bool rendererIsNeeded(const NodeRenderingContext&); |
| 128 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 130 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 129 virtual void removedFrom(ContainerNode*) OVERRIDE; | 131 virtual void removedFrom(ContainerNode*) OVERRIDE; |
| 130 virtual void finishParsingChildren() OVERRIDE; | 132 virtual void finishParsingChildren() OVERRIDE; |
| 131 | 133 |
| 132 virtual void handleLocalEvents(Event*); | 134 virtual void handleLocalEvents(Event*); |
| 133 | 135 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 175 |
| 174 void requestAutocompleteTimerFired(Timer<HTMLFormElement>*); | 176 void requestAutocompleteTimerFired(Timer<HTMLFormElement>*); |
| 175 | 177 |
| 176 Vector<RefPtr<Event> > m_pendingAutocompleteEvents; | 178 Vector<RefPtr<Event> > m_pendingAutocompleteEvents; |
| 177 Timer<HTMLFormElement> m_requestAutocompleteTimer; | 179 Timer<HTMLFormElement> m_requestAutocompleteTimer; |
| 178 }; | 180 }; |
| 179 | 181 |
| 180 } // namespace WebCore | 182 } // namespace WebCore |
| 181 | 183 |
| 182 #endif // HTMLFormElement_h | 184 #endif // HTMLFormElement_h |
| OLD | NEW |