Return the element at the specified point.
(point: Point)
| 117 | |
| 118 | /** Return the element at the specified point. */ |
| 119 | function getElementAt(point: Point) { |
| 120 | return document.elementFromPoint(point.x, point.y) as HTMLElement; |
| 121 | } |
| 122 | |
| 123 | describe('with ltr layout and menu at top of page moving down and right', () => { |
| 124 | let fixture: ComponentFixture<WithComplexNestedMenus>; |
no outgoing calls
no test coverage detected
searching dependent graphs…