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.cpp225 unsigned newSelectionEnd = selectionEnd(); in setRangeText() local
245 newSelectionEnd = start + replacementLength; in setRangeText()
247 newSelectionStart = newSelectionEnd = start; in setRangeText()
249 newSelectionStart = newSelectionEnd = start + replacementLength; in setRangeText()
259 if (newSelectionEnd > end) in setRangeText()
260 newSelectionEnd += delta; in setRangeText()
261 else if (newSelectionEnd > start) in setRangeText()
262 newSelectionEnd = start + replacementLength; in setRangeText()
265 setSelectionRange(newSelectionStart, newSelectionEnd, SelectionHasNoDirection); in setRangeText()