Update based on CSS Cascade and Inheritance spec

* add unset and initial to css.plist (still need to find where to add
these to IntelliSense)
* add all property to Intellisense
This commit is contained in:
David Storey
2015-11-24 18:16:27 -08:00
parent bc0039ab64
commit 2a6f37e439
2 changed files with 9 additions and 1 deletions

View File

@@ -448,6 +448,14 @@
<value name="flex-start" version="3.0" browsers="all" />
<value name="stretch" version="3.0" browsers="all" />
</values>
</entry>
<entry name="all" restriction="enum" version="3.0" browsers="C37,FF27,O24" ref="http://www.w3.org/TR/css-cascade-3/#all-shorthand" syntax="* { $(name): unset; }">
<desc>Shorthand that resets all properties except 'direction' and 'unicode-bidi'.</desc>
<values>
<value name="initial" version="3.0" browsers="all" />
<value name="inherit" version="3.0" browsers="all" />
<value name="unset" version="3.0" browsers="all" />
</values>
</entry>
<entry name="animation" restriction="time, enum, identifier, number" version="3.0" browsers="E,C43,FF16,IE10,O12.1,S9" ref="http://www.w3.org/TR/css3-animations/#animation" syntax="div { $(name): movearound 4s ease 3 normal; }">
<desc>Shorthand property combines six of the animation properties into a single property.</desc>