()
| 113 | } |
| 114 | |
| 115 | reset() { |
| 116 | this.input.value = ""; |
| 117 | this.completions = []; |
| 118 | this.renderCompletions(this.completions); |
| 119 | this.previousInputValue = null; |
| 120 | this.activeUserSearchEngine = null; |
| 121 | this.selection = this.initialSelectionValue; |
| 122 | this.seenTabToOpenCompletionList = false; |
| 123 | this.lastRequestId = null; |
| 124 | } |
| 125 | |
| 126 | updateSelection() { |
| 127 | // For suggestions from custom search engines, we copy the suggestion's text into the input when |
no test coverage detected