File tree Expand file tree Collapse file tree 2 files changed +16
-14
lines changed Expand file tree Collapse file tree 2 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -435,8 +435,8 @@ 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 ]" ,
439
- "-webkit-text-decoration-skip" : "none | skip " ,
438
+ "text-decoration-skip" : "none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]" ,
439
+ "-webkit-text-decoration-skip" : "none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ] " ,
440
440
"text-emphasis" : 1 ,
441
441
"text-height" : 1 ,
442
442
"text-indent" : "<length> | <percentage>" ,
Original file line number Diff line number Diff line change @@ -1494,19 +1494,16 @@ var YUITest = require("yuitest"),
1494
1494
valid : [
1495
1495
"none" ,
1496
1496
"objects" ,
1497
- "spaces" ,
1498
- "ink" ,
1499
1497
"edges" ,
1500
1498
"box-decoration" ,
1501
- "objects spaces" ,
1502
- "ink edges box-decoration" ,
1503
- "inherit" ,
1504
- "initial" ,
1505
- "unset"
1499
+ "spaces" ,
1500
+ "leading-spaces trailing-spaces" ,
1501
+ "objects leading-spaces trailing-spaces" ,
1502
+ "objects edges box-decoration"
1506
1503
] ,
1507
1504
1508
1505
invalid : {
1509
- "foo" : "Expected (none | [ objects || spaces || ink || edges || box-decoration ]) but found 'foo'."
1506
+ "foo" : "Expected (none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]) but found 'foo'."
1510
1507
}
1511
1508
} ) ) ;
1512
1509
@@ -1515,12 +1512,17 @@ var YUITest = require("yuitest"),
1515
1512
1516
1513
valid : [
1517
1514
"none" ,
1518
- "skip"
1519
- ] ,
1515
+ "objects" ,
1516
+ "edges" ,
1517
+ "box-decoration" ,
1518
+ "spaces" ,
1519
+ "leading-spaces trailing-spaces" ,
1520
+ "objects leading-spaces trailing-spaces" ,
1521
+ "objects edges box-decoration"
1522
+ ] ,
1520
1523
1521
1524
invalid : {
1522
- "skip foo" : "Expected end of value but found 'foo'." ,
1523
- "foo" : "Expected (none | skip) but found 'foo'."
1525
+ "foo" : "Expected (none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]) but found 'foo'."
1524
1526
}
1525
1527
} ) ) ;
1526
1528
You can’t perform that action at this time.
0 commit comments