(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 | } |
| 2526 | resolveComputedStyle(root, property) { |
| 2527 | return this.#flatGet(root, property, (root2, property2) => getComputedStyle(root2).getPropertyValue(property2)); |
| 2528 | } |