bool EmailInputType::typeMismatch() const
{
    return typeMismatchFor(element().value());
}
Example #2
0
bool NumberInputType::typeMismatch() const
{
    ASSERT(!typeMismatchFor(element()->value()));
    return false;
}
bool URLInputType::typeMismatch() const
{
    return typeMismatchFor(element()->value());
}