Dispatch a mousemove event.
(inElement: HTMLElement, point: Point)
| 112 | |
| 113 | /** Dispatch a mousemove event. */ |
| 114 | function mousemove(inElement: HTMLElement, point: Point) { |
| 115 | dispatchEvent(inElement, createMouseEvent('mousemove', point.x, point.y)); |
| 116 | } |
| 117 | |
| 118 | /** Return the element at the specified point. */ |
| 119 | function getElementAt(point: Point) { |
no test coverage detected
searching dependent graphs…