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