()
| 1696 | focusInput(); |
| 1697 | selectInput(input); |
| 1698 | function rehide() { |
| 1699 | var newVal = splitLines(input.value).join("\n"); |
| 1700 | if (newVal != val) operation(replaceSelection)(newVal, "end"); |
| 1701 | inputDiv.style.position = "relative"; |
| 1702 | input.style.cssText = oldCSS; |
| 1703 | if (ie_lt9) scroller.scrollTop = scrollPos; |
| 1704 | leaveInputAlone = false; |
| 1705 | resetInput(true); |
| 1706 | slowPoll(); |
| 1707 | } |
| 1708 | |
| 1709 | if (gecko) { |
| 1710 | e_stop(e); |
nothing calls this directly
no test coverage detected