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 = {
9
9
"align-items" : "flex-start | flex-end | center | baseline | stretch" ,
10
10
"align-content" : "flex-start | flex-end | center | space-between | space-around | stretch" ,
11
11
"align-self" : "auto | flex-start | flex-end | center | baseline | stretch" ,
12
+ "all" : "initial | inherit | unset" ,
12
13
"-webkit-align-items" : "flex-start | flex-end | center | baseline | stretch" ,
13
14
"-webkit-align-content" : "flex-start | flex-end | center | space-between | space-around | stretch" ,
14
15
"-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"),
107
107
}
108
108
} ) ) ;
109
109
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
+
110
124
suite . add ( new ValidationTestCase ( {
111
125
property : "animation-direction" ,
112
126
You can’t perform that action at this time.
0 commit comments