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

  /external/webkit/Source/WebCore/html/
HTMLInputElement.h 71 String stepString() const;
ValidityState.cpp 93 return validationMessageStepMismatchText(input->stepBaseString(), input->stepString());
HTMLInputElement.cpp 261 String HTMLInputElement::stepString() const
265 // stepString() should be called only if stepMismatch() can be true.
294 const AtomicString& stepString = fastGetAttribute(stepAttr);
295 if (stepString.isEmpty()) {
301 if (equalIgnoringCase(stepString, "any"))
305 if (!parseToDoubleForNumberType(stepString, &parsed) || parsed <= 0.0) {
310 if (!parseToDoubleForNumberTypeWithDecimalPlaces(stepString, &parsed, decimalPlaces) || parsed <= 0.0) {
    [all...]

Completed in 175 milliseconds