Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTextAreaElement.cpp304 unsigned appendableLength = unsignedMaxLength > baseLength ? unsignedMaxLength - baseLength : 0; in handleBeforeTextInsertedEvent() local
305 event->setText(sanitizeUserInputValue(event->text(), appendableLength)); in handleBeforeTextInsertedEvent()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DTextFieldInputType.cpp452 unsigned appendableLength = maxLength > baseLength ? maxLength - baseLength : 0; in handleBeforeTextInsertedEvent() local
464 event->setText(limitLength(eventText, appendableLength)); in handleBeforeTextInsertedEvent()