(event)
| 144 | } |
| 145 | |
| 146 | _handleMouseLeave(event) { |
| 147 | // Check if we should show the cursor on the element we are leaving to |
| 148 | this._updateVisibility(event.relatedTarget); |
| 149 | } |
| 150 | |
| 151 | _handleMouseMove(event) { |
| 152 | this._updateVisibility(event.target); |
nothing calls this directly
no test coverage detected