Searched refs:s_maximumLength (Results 1 – 5 of 5) sorted by relevance
52 const int InputElement::s_maximumLength = 524288; member in WebCore::InputElement169 return replaceEOLAndLimitLength(inputElement, proposedValue, s_maximumLength); in sanitizeValueForTextField()197 …ast<unsigned>(inputElement->supportsMaxLength() ? data.maxLength() : s_maximumLength); // maxLengt… in handleBeforeTextInsertedEvent()227 … int maxLength = attribute->isNull() ? InputElement::s_maximumLength : attribute->value().toInt(); in parseMaxLengthAttribute()228 if (maxLength <= 0 || maxLength > InputElement::s_maximumLength) in parseMaxLengthAttribute()229 maxLength = InputElement::s_maximumLength; in parseMaxLengthAttribute()262 , m_maxLength(InputElement::s_maximumLength) in InputElementData()267 , m_maxInputCharsAllowed(InputElement::s_maximumLength) in InputElementData()
78 static const int s_maximumLength; variable
155 return HTMLInputElement::s_maximumLength; in defaultMaxLength()
1450 return QVariant(InputElement::s_maximumLength); in inputMethodQuery()
262 Replace InputElement::s_maximumLength with HTMLInputElement::maximumLength.