Loading…
Native implementations will have getComputedStyle(element).getPropertyValue(property). We can provide something like element.getComputedStyleValue(property) that can work when custom propreties are shimmed.
getComputedStyle(element).getPropertyValue(property)
element.getComputedStyleValue(property)
Fixes #2690
d8b78d4
Native implementations will have
getComputedStyle(element).getPropertyValue(property). We can provide something likeelement.getComputedStyleValue(property)that can work when custom propreties are shimmed.