* Helper function to get computed style value * @param {HTMLElement} element - DOM element * @param {string} property - CSS property name * @returns {string} Computed style value
(element, property)
| 71 | * @returns {string} Computed style value |
| 72 | */ |
| 73 | function getComputedStyleValue(element, property) { |
| 74 | return window.getComputedStyle(element).getPropertyValue(property); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Helper function to check if element meets minimum touch target size |
nothing calls this directly
no outgoing calls
no test coverage detected