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