(root, property)
| 507 | } |
| 508 | |
| 509 | resolveAttribute(root, property) { |
| 510 | if (this.reactivity.isTracking) this.reactivity.trackAttribute(root, property); |
| 511 | return this.#flatGet(root, property, (root, property) => root.getAttribute && root.getAttribute(property)) |
| 512 | } |
| 513 | |
| 514 | resolveStyle(root, property) { |
| 515 | return this.#flatGet(root, property, (root, property) => root.style && root.style[property]) |
no test coverage detected