1/*
2 * This file is part of the WebKit project.
3 *
4 * Copyright (C) 2009 Michelangelo De Simone <micdesim@gmail.com>
5 * Copyright (C) 2010 Apple Inc. All rights reserved.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB.  If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 *
22 */
23
24#include "config.h"
25#include "ValidityState.h"
26
27#include "HTMLInputElement.h"
28#include "HTMLNames.h"
29#include "HTMLSelectElement.h"
30#include "HTMLTextAreaElement.h"
31#include "HTMLTreeBuilder.h"
32#include "LocalizedStrings.h"
33#include <wtf/StdLibExtras.h>
34
35namespace WebCore {
36
37using namespace HTMLNames;
38
39String ValidityState::validationMessage() const
40{
41    return m_control->validationMessage();
42}
43
44bool ValidityState::valueMissing() const
45{
46    return m_control->valueMissing();
47}
48
49bool ValidityState::typeMismatch() const
50{
51    return m_control->typeMismatch();
52}
53
54bool ValidityState::patternMismatch() const
55{
56    return m_control->patternMismatch();
57}
58
59bool ValidityState::tooLong() const
60{
61    return m_control->tooLong();
62}
63
64bool ValidityState::rangeUnderflow() const
65{
66    return m_control->rangeUnderflow();
67}
68
69bool ValidityState::rangeOverflow() const
70{
71    return m_control->rangeOverflow();
72}
73
74bool ValidityState::stepMismatch() const
75{
76    return m_control->stepMismatch();
77}
78
79bool ValidityState::badInput() const
80{
81    return m_control->hasBadInput();
82}
83
84bool ValidityState::customError() const
85{
86    return m_control->customError();
87}
88
89bool ValidityState::valid() const
90{
91    return m_control->valid();
92}
93
94} // namespace
95