( n: Element, selectors: string, )
| 241 | } |
| 242 | |
| 243 | export function querySelectorAll( |
| 244 | n: Element, |
| 245 | selectors: string, |
| 246 | ): NodeListOf<Element> { |
| 247 | return getUntaintedAccessor('Element', n, 'querySelectorAll')(selectors); |
| 248 | } |
| 249 | |
| 250 | export function mutationObserverCtor(): [ |
| 251 | (typeof MutationObserver)['prototype']['constructor'], |
nothing calls this directly
no test coverage detected