File tree Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -2789,9 +2789,9 @@ interface CSSStyleDeclaration {
2789
2789
bottom: string | null;
2790
2790
boxShadow: string;
2791
2791
boxSizing: string;
2792
- breakAfter: string | null ;
2793
- breakBefore: string | null ;
2794
- breakInside: string | null ;
2792
+ breakAfter: string;
2793
+ breakBefore: string;
2794
+ breakInside: string;
2795
2795
captionSide: string | null;
2796
2796
caretColor: string;
2797
2797
clear: string | null;
@@ -2966,7 +2966,7 @@ interface CSSStyleDeclaration {
2966
2966
objectPosition: string;
2967
2967
opacity: string | null;
2968
2968
order: string;
2969
- orphans: string | null ;
2969
+ orphans: string;
2970
2970
outline: string;
2971
2971
outlineColor: string;
2972
2972
outlineOffset: string;
@@ -3208,7 +3208,7 @@ interface CSSStyleDeclaration {
3208
3208
webkitUserSelect: string | null;
3209
3209
webkitWritingMode: string | null;
3210
3210
whiteSpace: string;
3211
- widows: string | null ;
3211
+ widows: string;
3212
3212
width: string | null;
3213
3213
willChange: string;
3214
3214
wordBreak: 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 40
40
"url" : " https://www.w3.org/TR/css-fonts-3/" ,
41
41
"title" : " CSS Fonts"
42
42
},
43
+ {
44
+ "url" : " https://www.w3.org/TR/css-break-3/" ,
45
+ "title" : " CSS Fragmentation"
46
+ },
43
47
{
44
48
"url" : " https://www.w3.org/TR/css-grid-1/" ,
45
49
"title" : " CSS Grid Layout"
Original file line number Diff line number Diff line change 70
70
"property" : {
71
71
"backgroundPositionBlock" : null ,
72
72
"backgroundPositionInline" : null ,
73
+ "blockOverflow" : null ,
73
74
"borderClip" : null ,
74
75
"borderClipBottom" : null ,
75
76
"borderClipLeft" : null ,
76
77
"borderClipRight" : null ,
77
78
"borderClipTop" : null ,
78
79
"borderLimit" : null ,
80
+ "boxDecorationBreak" : null ,
81
+ "continue" : null ,
79
82
"cornerShape" : null ,
80
83
"corners" : null ,
81
84
"hangingPunctuation" : null ,
82
- "blockOverflow" : null ,
83
- "continue" : null ,
84
85
"lineClamp" : null ,
85
86
"maskBorder" : null ,
86
87
"maskBorderMode" : null ,
You can’t perform that action at this time.
0 commit comments