File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -309,6 +309,7 @@ var Properties = {
309
309
"float-offset" : 1 ,
310
310
"font" : 1 ,
311
311
"font-family" : 1 ,
312
+ "font-feature-settings" : "<feature-tag-value> | normal | inherit" ,
312
313
"font-kerning" : "auto | normal | none | initial | inherit | unset" ,
313
314
"font-size" : "<absolute-size> | <relative-size> | <length> | <percentage> | inherit" ,
314
315
"font-size-adjust" : "<number> | none | inherit" ,
Original file line number Diff line number Diff line change @@ -210,6 +210,10 @@ var ValidationTypes = {
210
210
211
211
"<flex-wrap>" : function ( part ) {
212
212
return ValidationTypes . isLiteral ( part , "nowrap | wrap | wrap-reverse" ) ;
213
+ } ,
214
+
215
+ "<feature-tag-value>" : function ( part ) {
216
+ return ( part . type == "function" && / ^ [ A - Z 0 - 9 ] { 4 } $ / i. test ( part ) ) ;
213
217
}
214
218
} ,
215
219
You can’t perform that action at this time.
0 commit comments