HomeSort by relevance Sort by last modified time
    Searched refs:stepMismatch (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
ValidityState.cpp 64 bool ValidityState::stepMismatch() const
66 return m_control->stepMismatch();
ValidityState.idl 31 readonly attribute boolean stepMismatch;
ValidityState.h 54 bool stepMismatch() const;
FormAssociatedElement.h 76 // stepMismatch, tooLong and valueMissing must call willValidate method.
81 virtual bool stepMismatch() const;
StepRange.cpp 81 return stepMismatch(currentValue) ? newValue : roundByStep(newValue, m_stepBase);
144 bool StepRange::stepMismatch(const Decimal& valueForCheck) const
StepRange.h 84 bool stepMismatch(const Decimal&) const;
FormAssociatedElement.cpp 213 bool FormAssociatedElement::stepMismatch() const
230 bool someError = typeMismatch() || stepMismatch() || rangeUnderflow() || rangeOverflow()
InputType.cpp 323 bool InputType::stepMismatch(const String& value) const
332 return createStepRange(RejectAny).stepMismatch(numericValue);
387 if (stepRange.stepMismatch(numericValue)) {
1073 if (stepMismatch(element()->value())) {
InputType.h 163 bool stepMismatch(const String&) const;
HTMLInputElement.h 61 virtual bool stepMismatch() const OVERRIDE;
HTMLInputElement.cpp 232 && !m_inputType->stepMismatch(value)
314 bool HTMLInputElement::stepMismatch() const
316 return willValidate() && m_inputType->stepMismatch(value());
    [all...]

Completed in 250 milliseconds