Home
last modified time | relevance | path

Searched refs:appendableLength (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/
DHTMLTextAreaElement.cpp261 unsigned appendableLength = unsignedMaxLength > baseLength ? unsignedMaxLength - baseLength : 0; in handleBeforeTextInsertedEvent() local
262 event->setText(sanitizeUserInputValue(event->text(), appendableLength)); in handleBeforeTextInsertedEvent()
/external/webkit/Source/WebCore/dom/
DInputElement.cpp198 unsigned appendableLength = maxLength > baseLength ? maxLength - baseLength : 0; in handleBeforeTextInsertedEvent() local
214 textEvent->setText(sanitizeUserInputValue(inputElement, textEvent->text(), appendableLength)); in handleBeforeTextInsertedEvent()