You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If StylePropertyMap’s property model contains an entry for property:
If property is a list-valued property, return the list of values assigned to that property.
If property is not a list-valued property, let values initially be the empty list and append the value assigned to the property to this list and return values.
A StylePropertyMapReadOnly object has an associated property model, which is a list of property - sequence<CSSStyleValue> pairs.
Given this, it's not clear why this distinction between list-valued and non-list-valued properties needs to be made; they're all represented as sequence<CSSStyleValue>.