diff --git a/css-typed-om/Overview.bs b/css-typed-om/Overview.bs index 489e9f66..f8e71816 100644 --- a/css-typed-om/Overview.bs +++ b/css-typed-om/Overview.bs @@ -275,8 +275,16 @@ The append(DOMString property,
To get a value from a StylePropertyMap, run these steps: - Issue(148): Write this + 1. If |property| does not start with two dashes (U+002D HYPHEN), + let |property| be |property| [=ASCII lowercased=]. + + 2. If |property| is not a [=supported property name=], + [=throw=] a {{TypeError}} and exit this algorithm. + 3. If {{StylePropertyMap}}’s [=property model=] contains an entry for |property|, + return the first value found in that entry. + + 4. Else, return `null`.