()
| 737 | |
| 738 | // _updateTabIndices and _updateTabIndicesImpl are used in tests |
| 739 | private _updateTabIndices() { |
| 740 | if (!this._updateTabIndicesThrottled) { |
| 741 | this._updateTabIndicesThrottled = _BaseUtils._throttledFunction(100, this._updateTabIndicesImpl.bind(this)); |
| 742 | } |
| 743 | this._updateTabIndicesThrottled(); |
| 744 | } |
| 745 | private _updateTabIndicesImpl() { |
| 746 | var tabIndex = _ElementUtilities._getHighAndLowTabIndices(this._dom.pane); |
| 747 | this._highestPaneTabIndex = tabIndex.highest; |
no test coverage detected