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 "core/html/ValidityState.h"
26
27namespace blink {
28
29String ValidityState::validationMessage() const
30{
31    return m_control->validationMessage();
32}
33
34bool ValidityState::valueMissing() const
35{
36    return m_control->valueMissing();
37}
38
39bool ValidityState::typeMismatch() const
40{
41    return m_control->typeMismatch();
42}
43
44bool ValidityState::patternMismatch() const
45{
46    return m_control->patternMismatch();
47}
48
49bool ValidityState::tooLong() const
50{
51    return m_control->tooLong();
52}
53
54bool ValidityState::rangeUnderflow() const
55{
56    return m_control->rangeUnderflow();
57}
58
59bool ValidityState::rangeOverflow() const
60{
61    return m_control->rangeOverflow();
62}
63
64bool ValidityState::stepMismatch() const
65{
66    return m_control->stepMismatch();
67}
68
69bool ValidityState::badInput() const
70{
71    return m_control->hasBadInput();
72}
73
74bool ValidityState::customError() const
75{
76    return m_control->customError();
77}
78
79bool ValidityState::valid() const
80{
81    return m_control->valid();
82}
83
84} // namespace
85