(x, y, bmask)
| 1327 | } |
| 1328 | |
| 1329 | _handleMouseButton(x, y, bmask) { |
| 1330 | // Flush waiting move event first |
| 1331 | this._flushMouseMoveTimer(x, y); |
| 1332 | |
| 1333 | this._mouseButtonMask = bmask; |
| 1334 | this._sendMouse(x, y, this._mouseButtonMask); |
| 1335 | } |
| 1336 | |
| 1337 | _handleMouseMove(x, y) { |
| 1338 | this._mousePos = { 'x': x, 'y': y }; |
no test coverage detected