Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTextFormControlElement.cpp224 unsigned newSelectionEnd = selectionEnd(); in setRangeText() local
244 newSelectionEnd = start + replacementLength; in setRangeText()
246 newSelectionStart = newSelectionEnd = start; in setRangeText()
248 newSelectionStart = newSelectionEnd = start + replacementLength; in setRangeText()
258 if (newSelectionEnd > end) in setRangeText()
259 newSelectionEnd += delta; in setRangeText()
260 else if (newSelectionEnd > start) in setRangeText()
261 newSelectionEnd = start + replacementLength; in setRangeText()
264 setSelectionRange(newSelectionStart, newSelectionEnd, SelectionHasNoDirection); in setRangeText()