(root, property)
| 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)); |
| 2522 | } |
| 2523 | resolveStyle(root, property) { |
| 2524 | return this.#flatGet(root, property, (root2, property2) => root2.style && root2.style[property2]); |
| 2525 | } |
no test coverage detected