()
| 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; |
| 136 | } |
| 137 | _refreshRowsDimensions() { |
| 138 | if (this._renderService.dimensions.css.cell.height) { |
| 139 | this._accessibilityContainer.style.width = `${this._renderService.dimensions.css.canvas.width}px`, this._rowElements.length !== this._terminal.rows && this._handleResize(this._terminal.rows); |
no test coverage detected