()
| 872 | } |
| 873 | |
| 874 | _clientHasExpectedSize() { |
| 875 | const [currentWidth, currentHeight] = this._currentClientSize(); |
| 876 | return currentWidth == this._expectedClientWidth && |
| 877 | currentHeight == this._expectedClientHeight; |
| 878 | } |
| 879 | |
| 880 | // Handle browser window resizes |
| 881 | _handleResize() { |
no test coverage detected