(root, property)
| 2504 | } |
| 2505 | } |
| 2506 | resolveAttribute(root, property) { |
| 2507 | if (this.reactivity.isTracking) this.reactivity.trackAttribute(root, property); |
| 2508 | return this.#flatGet(root, property, (root2, property2) => root2.getAttribute && root2.getAttribute(property2)); |
| 2509 | } |
| 2510 | resolveStyle(root, property) { |
| 2511 | return this.#flatGet(root, property, (root2, property2) => root2.style && root2.style[property2]); |
| 2512 | } |
no test coverage detected