Dispatch a mouseout event.
(mouseOutOf: HTMLElement)
| 102 | |
| 103 | /** Dispatch a mouseout event. */ |
| 104 | function mouseout(mouseOutOf: HTMLElement) { |
| 105 | dispatchMouseEvent(mouseOutOf, 'mouseout'); |
| 106 | } |
| 107 | |
| 108 | /** Dispatch a mouseenter event. */ |
| 109 | function mouseenter(element: HTMLElement, point: Point) { |
no test coverage detected
searching dependent graphs…