File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -435,6 +435,7 @@ var Properties = module.exports = {
435
435
"text-decoration-color" : "<text-decoration-color>" ,
436
436
"text-decoration-line" : "<text-decoration-line>" ,
437
437
"text-decoration-style" : "<text-decoration-style>" ,
438
+ "text-decoration-skip" : "none | [ objects || spaces || ink || edges || box-decoration ]" ,
438
439
"text-emphasis" : 1 ,
439
440
"text-height" : 1 ,
440
441
"text-indent" : "<length> | <percentage>" ,
Original file line number Diff line number Diff line change @@ -1488,6 +1488,28 @@ var YUITest = require("yuitest"),
1488
1488
}
1489
1489
} ) ) ;
1490
1490
1491
+ suite . add ( new ValidationTestCase ( {
1492
+ property : "text-decoration-skip" ,
1493
+
1494
+ valid : [
1495
+ "none" ,
1496
+ "objects" ,
1497
+ "spaces" ,
1498
+ "ink" ,
1499
+ "edges" ,
1500
+ "box-decoration" ,
1501
+ "objects spaces" ,
1502
+ "ink edges box-decoration" ,
1503
+ "inherit" ,
1504
+ "initial" ,
1505
+ "unset"
1506
+ ] ,
1507
+
1508
+ invalid : {
1509
+ "foo" : "Expected (none | [ objects || spaces || ink || edges || box-decoration ]) but found 'foo'."
1510
+ }
1511
+ } ) ) ;
1512
+
1491
1513
suite . add ( new ValidationTestCase ( {
1492
1514
property : "text-rendering" ,
1493
1515
You can’t perform that action at this time.
0 commit comments