File tree 4 files changed +16
-4
lines changed 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -2806,9 +2806,9 @@ interface CSSStyleDeclaration {
2806
2806
bottom: string;
2807
2807
boxShadow: string;
2808
2808
boxSizing: string;
2809
- breakAfter: string | null ;
2810
- breakBefore: string | null ;
2811
- breakInside: string | null ;
2809
+ breakAfter: string;
2810
+ breakBefore: string;
2811
+ breakInside: string;
2812
2812
captionSide: string;
2813
2813
caretColor: string;
2814
2814
clear: string;
Original file line number Diff line number Diff line change
1
+ partial interface CSSStyleDeclaration {
2
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakBefore;
3
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakAfter;
4
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString breakInside;
5
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString orphans;
6
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString widows;
7
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString boxDecorationBreak;
8
+ };
Original file line number Diff line number Diff line change 44
44
"url" : " https://www.w3.org/TR/css-fonts-3/" ,
45
45
"title" : " CSS Fonts"
46
46
},
47
+ {
48
+ "url" : " https://www.w3.org/TR/css-break-3/" ,
49
+ "title" : " CSS Fragmentation"
50
+ },
47
51
{
48
52
"url" : " https://www.w3.org/TR/css-grid-1/" ,
49
53
"title" : " CSS Grid Layout"
Original file line number Diff line number Diff line change 89
89
"borderLimit" : null ,
90
90
"borderStartEndRadius" : null ,
91
91
"borderStartStartRadius" : null ,
92
- "blockOverflow " : null ,
92
+ "boxDecorationBreak " : null ,
93
93
"continue" : null ,
94
94
"cornerShape" : null ,
95
95
"corners" : null ,
You can’t perform that action at this time.
0 commit comments