File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ var Properties = module.exports = {
99 "align-items" : "flex-start | flex-end | center | baseline | stretch" ,
1010 "align-content" : "flex-start | flex-end | center | space-between | space-around | stretch" ,
1111 "align-self" : "auto | flex-start | flex-end | center | baseline | stretch" ,
12+ "all" : "initial | inherit | unset" ,
1213 "-webkit-align-items" : "flex-start | flex-end | center | baseline | stretch" ,
1314 "-webkit-align-content" : "flex-start | flex-end | center | space-between | space-around | stretch" ,
1415 "-webkit-align-self" : "auto | flex-start | flex-end | center | baseline | stretch" ,
Original file line number Diff line number Diff line change @@ -107,6 +107,20 @@ var YUITest = require("yuitest"),
107107 }
108108 } ) ) ;
109109
110+ suite . add ( new ValidationTestCase ( {
111+ property : "all" ,
112+
113+ valid : [
114+ "unset" ,
115+ "initial" ,
116+ "inherit"
117+ ] ,
118+
119+ invalid : {
120+ "foo" : "Expected (initial | inherit | unset) but found 'foo'."
121+ }
122+ } ) ) ;
123+
110124 suite . add ( new ValidationTestCase ( {
111125 property : "animation-direction" ,
112126
You can’t perform that action at this time.
0 commit comments