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

  /external/webkit/Source/WebCore/dom/
InputElement.cpp 52 const int InputElement::s_maximumLength = 524288;
169 return replaceEOLAndLimitLength(inputElement, proposedValue, s_maximumLength);
197 unsigned maxLength = static_cast<unsigned>(inputElement->supportsMaxLength() ? data.maxLength() : s_maximumLength); // maxLength() can never be negative.
227 int maxLength = attribute->isNull() ? InputElement::s_maximumLength : attribute->value().toInt();
228 if (maxLength <= 0 || maxLength > InputElement::s_maximumLength)
229 maxLength = InputElement::s_maximumLength;
262 , m_maxLength(InputElement::s_maximumLength)
267 , m_maxInputCharsAllowed(InputElement::s_maximumLength)
InputElement.h 78 static const int s_maximumLength;
81 // Replaces CRs and LFs, shrinks the value for s_maximumLength.
  /external/webkit/Source/WebKit/chromium/src/
WebInputElement.cpp 155 return HTMLInputElement::s_maximumLength;
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp     [all...]

Completed in 107 milliseconds