()
| 1896 | focusInput(); |
| 1897 | selectInput(input); |
| 1898 | function rehide() { |
| 1899 | var newVal = splitLines(input.value).join("\n"); |
| 1900 | if (newVal != val) operation(replaceSelection)(newVal, "end"); |
| 1901 | inputDiv.style.position = "relative"; |
| 1902 | input.style.cssText = oldCSS; |
| 1903 | if (ie_lt9) scroller.scrollTop = scrollPos; |
| 1904 | leaveInputAlone = false; |
| 1905 | resetInput(true); |
| 1906 | slowPoll(); |
| 1907 | } |
| 1908 | |
| 1909 | if (gecko) { |
| 1910 | e_stop(e); |
nothing calls this directly
no test coverage detected