(event)
| 137 | } |
| 138 | |
| 139 | _handleMouseOver(event) { |
| 140 | // This event could be because we're entering the target, or |
| 141 | // moving around amongst its sub elements. Let the move handler |
| 142 | // sort things out. |
| 143 | this._handleMouseMove(event); |
| 144 | } |
| 145 | |
| 146 | _handleMouseLeave(event) { |
| 147 | // Check if we should show the cursor on the element we are leaving to |
nothing calls this directly
no test coverage detected