(root, css)
| 2513 | } |
| 2514 | } |
| 2515 | resolveQuery(root, css) { |
| 2516 | if (this.reactivity.isTracking) this.reactivity.trackQuery(root); |
| 2517 | return root.querySelectorAll(css); |
| 2518 | } |
| 2519 | resolveAttribute(root, property) { |
| 2520 | if (this.reactivity.isTracking) this.reactivity.trackAttribute(root, property); |
| 2521 | return this.#flatGet(root, property, (root2, property2) => root2.getAttribute && root2.getAttribute(property2)); |
no test coverage detected