Skip to content

Commit

Permalink
[css-properties-values-api] Use CSSOMString for JS API
Browse files Browse the repository at this point in the history
Fixes w3c#1099
  • Loading branch information
emilio committed Jun 26, 2023
1 parent 3783bd7 commit ad88a72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions css-properties-values-api/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -672,10 +672,10 @@ the {{CSS}} object is extended with a {{registerProperty()}} method:

<pre class='idl'>
dictionary PropertyDefinition {
required DOMString name;
DOMString syntax = "*";
required CSSOMString name;
CSSOMString syntax = "*";
required boolean inherits;
DOMString initialValue;
CSSOMString initialValue;
};

partial namespace CSS {
Expand Down

0 comments on commit ad88a72

Please sign in to comment.