OLD | NEW |
1 /* | 1 /* |
2 * This file is part of the WebKit project. | 2 * This file is part of the WebKit project. |
3 * | 3 * |
4 * Copyright (C) 2009 Michelangelo De Simone <micdesim@gmail.com> | 4 * Copyright (C) 2009 Michelangelo De Simone <micdesim@gmail.com> |
5 * Copyright (C) 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 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 11 matching lines...) Expand all Loading... |
22 */ | 22 */ |
23 | 23 |
24 #include "config.h" | 24 #include "config.h" |
25 #include "ValidityState.h" | 25 #include "ValidityState.h" |
26 | 26 |
27 #include "HTMLInputElement.h" | 27 #include "HTMLInputElement.h" |
28 #include "HTMLNames.h" | 28 #include "HTMLNames.h" |
29 #include "HTMLSelectElement.h" | 29 #include "HTMLSelectElement.h" |
30 #include "HTMLTextAreaElement.h" | 30 #include "HTMLTextAreaElement.h" |
31 #include "HTMLTreeBuilder.h" | 31 #include "HTMLTreeBuilder.h" |
32 #include "LocalizedStrings.h" | 32 #include "core/platform/LocalizedStrings.h" |
33 #include <wtf/StdLibExtras.h> | 33 #include <wtf/StdLibExtras.h> |
34 | 34 |
35 namespace WebCore { | 35 namespace WebCore { |
36 | 36 |
37 using namespace HTMLNames; | 37 using namespace HTMLNames; |
38 | 38 |
39 String ValidityState::validationMessage() const | 39 String ValidityState::validationMessage() const |
40 { | 40 { |
41 return m_control->validationMessage(); | 41 return m_control->validationMessage(); |
42 } | 42 } |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 { | 85 { |
86 return m_control->customError(); | 86 return m_control->customError(); |
87 } | 87 } |
88 | 88 |
89 bool ValidityState::valid() const | 89 bool ValidityState::valid() const |
90 { | 90 { |
91 return m_control->valid(); | 91 return m_control->valid(); |
92 } | 92 } |
93 | 93 |
94 } // namespace | 94 } // namespace |
OLD | NEW |