(e3)
| 125 | } |
| 126 | } |
| 127 | _handleResize(e3) { |
| 128 | this._rowElements[this._rowElements.length - 1].removeEventListener("focus", this._bottomBoundaryFocusListener); |
| 129 | for (let e4 = this._rowContainer.children.length; e4 < this._terminal.rows; e4++) this._rowElements[e4] = this._createAccessibilityTreeNode(), this._rowContainer.appendChild(this._rowElements[e4]); |
| 130 | for (; this._rowElements.length > e3; ) this._rowContainer.removeChild(this._rowElements.pop()); |
| 131 | this._rowElements[this._rowElements.length - 1].addEventListener("focus", this._bottomBoundaryFocusListener), this._refreshRowsDimensions(); |
| 132 | } |
| 133 | _createAccessibilityTreeNode() { |
| 134 | const e3 = this._coreBrowserService.mainDocument.createElement("div"); |
| 135 | return e3.setAttribute("role", "listitem"), e3.tabIndex = -1, this._refreshRowDimensions(e3), e3; |
no test coverage detected