HomeSort by relevance Sort by last modified time
    Searched defs:s_maximumLength (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/dom/
InputElement.h 61 static const int s_maximumLength;
71 // Replaces CRs and LFs, shrinks the value for s_maximumLength.
InputElement.cpp 52 const int InputElement::s_maximumLength = 524288;
141 return InputElement::sanitizeUserInputValue(inputElement, proposedValue, s_maximumLength);
199 int maxLength = attribute->isNull() ? InputElement::s_maximumLength : attribute->value().toInt();
200 if (maxLength <= 0 || maxLength > InputElement::s_maximumLength)
201 maxLength = InputElement::s_maximumLength;
234 , m_maxLength(InputElement::s_maximumLength)

Completed in 76 milliseconds