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 @@ -436,6 +436,7 @@ var Properties = module.exports = {
436
436
"text-decoration-line" : "<text-decoration-line>" ,
437
437
"text-decoration-style" : "<text-decoration-style>" ,
438
438
"text-decoration-skip" : "none | [ objects || spaces || ink || edges || box-decoration ]" ,
439
+ "-webkit-text-decoration-skip" : "none | skip" ,
439
440
"text-emphasis" : 1 ,
440
441
"text-height" : 1 ,
441
442
"text-indent" : "<length> | <percentage>" ,
Original file line number Diff line number Diff line change @@ -1510,6 +1510,20 @@ var YUITest = require("yuitest"),
1510
1510
}
1511
1511
} ) ) ;
1512
1512
1513
+ suite . add ( new ValidationTestCase ( {
1514
+ property : "-webkit-text-decoration-skip" ,
1515
+
1516
+ valid : [
1517
+ "none" ,
1518
+ "skip"
1519
+ ] ,
1520
+
1521
+ invalid : {
1522
+ "skip foo" : "Expected end of value but found 'foo'." ,
1523
+ "foo" : "Expected (none | skip) but found 'foo'."
1524
+ }
1525
+ } ) ) ;
1526
+
1513
1527
suite . add ( new ValidationTestCase ( {
1514
1528
property : "text-rendering" ,
1515
1529
You can’t perform that action at this time.
0 commit comments