| 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, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 bool supportLabels() const override { return true; } | 111 bool supportLabels() const override { return true; } |
| 112 | 112 |
| 113 const AtomicString& formControlType() const override; | 113 const AtomicString& formControlType() const override; |
| 114 | 114 |
| 115 FormControlState saveFormControlState() const override; | 115 FormControlState saveFormControlState() const override; |
| 116 void restoreFormControlState(const FormControlState&) override; | 116 void restoreFormControlState(const FormControlState&) override; |
| 117 | 117 |
| 118 bool isTextControl() const override { return true; } | 118 bool isTextControl() const override { return true; } |
| 119 | 119 |
| 120 void childrenChanged(const ChildrenChange&) override; | 120 void childrenChanged(const ChildrenChange&) override; |
| 121 void parseAttribute(const QualifiedName&, | 121 void parseAttribute(const AttributeModificationParams&) override; |
| 122 const AtomicString&, | |
| 123 const AtomicString&) override; | |
| 124 bool isPresentationAttribute(const QualifiedName&) const override; | 122 bool isPresentationAttribute(const QualifiedName&) const override; |
| 125 void collectStyleForPresentationAttribute(const QualifiedName&, | 123 void collectStyleForPresentationAttribute(const QualifiedName&, |
| 126 const AtomicString&, | 124 const AtomicString&, |
| 127 MutableStylePropertySet*) override; | 125 MutableStylePropertySet*) override; |
| 128 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 126 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 129 void appendToFormData(FormData&) override; | 127 void appendToFormData(FormData&) override; |
| 130 void resetImpl() override; | 128 void resetImpl() override; |
| 131 bool hasCustomFocusLogic() const override; | 129 bool hasCustomFocusLogic() const override; |
| 132 bool shouldShowFocusRingOnMouseFocus() const override; | 130 bool shouldShowFocusRingOnMouseFocus() const override; |
| 133 bool isKeyboardFocusable() const override; | 131 bool isKeyboardFocusable() const override; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 150 mutable String m_value; | 148 mutable String m_value; |
| 151 mutable bool m_isDirty; | 149 mutable bool m_isDirty; |
| 152 bool m_valueIsUpToDate; | 150 bool m_valueIsUpToDate; |
| 153 unsigned m_isPlaceholderVisible : 1; | 151 unsigned m_isPlaceholderVisible : 1; |
| 154 String m_suggestedValue; | 152 String m_suggestedValue; |
| 155 }; | 153 }; |
| 156 | 154 |
| 157 } // namespace blink | 155 } // namespace blink |
| 158 | 156 |
| 159 #endif // HTMLTextAreaElement_h | 157 #endif // HTMLTextAreaElement_h |
| OLD | NEW |