| 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 13 matching lines...) Expand all Loading... |
| 24 #ifndef HTMLTextAreaElement_h | 24 #ifndef HTMLTextAreaElement_h |
| 25 #define HTMLTextAreaElement_h | 25 #define HTMLTextAreaElement_h |
| 26 | 26 |
| 27 #include "base/gtest_prod_util.h" | 27 #include "base/gtest_prod_util.h" |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/html/TextControlElement.h" | 29 #include "core/html/TextControlElement.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class BeforeTextInsertedEvent; | 33 class BeforeTextInsertedEvent; |
| 34 class ExceptionState; | |
| 35 | 34 |
| 36 class CORE_EXPORT HTMLTextAreaElement final : public TextControlElement { | 35 class CORE_EXPORT HTMLTextAreaElement final : public TextControlElement { |
| 37 DEFINE_WRAPPERTYPEINFO(); | 36 DEFINE_WRAPPERTYPEINFO(); |
| 38 | 37 |
| 39 public: | 38 public: |
| 40 static HTMLTextAreaElement* create(Document&, HTMLFormElement*); | 39 static HTMLTextAreaElement* create(Document&, HTMLFormElement*); |
| 41 | 40 |
| 42 unsigned cols() const { return m_cols; } | 41 unsigned cols() const { return m_cols; } |
| 43 unsigned rows() const { return m_rows; } | 42 unsigned rows() const { return m_rows; } |
| 44 | 43 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 mutable String m_value; | 150 mutable String m_value; |
| 152 mutable bool m_isDirty; | 151 mutable bool m_isDirty; |
| 153 bool m_valueIsUpToDate; | 152 bool m_valueIsUpToDate; |
| 154 unsigned m_isPlaceholderVisible : 1; | 153 unsigned m_isPlaceholderVisible : 1; |
| 155 String m_suggestedValue; | 154 String m_suggestedValue; |
| 156 }; | 155 }; |
| 157 | 156 |
| 158 } // namespace blink | 157 } // namespace blink |
| 159 | 158 |
| 160 #endif // HTMLTextAreaElement_h | 159 #endif // HTMLTextAreaElement_h |
| OLD | NEW |