File tree Expand file tree Collapse file tree 4 files changed +19
-6
lines changed Expand file tree Collapse file tree 4 files changed +19
-6
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 | null;
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 | null;
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 28
28
"url" : " https://www.w3.org/TR/css-fonts-3/" ,
29
29
"title" : " CSS Fonts"
30
30
},
31
+ {
32
+ "url" : " https://www.w3.org/TR/css-break-3/" ,
33
+ "title" : " CSS Fragmentation"
34
+ },
31
35
{
32
36
"url" : " https://drafts.csswg.org/css-images-3/" ,
33
37
"title" : " CSS Images"
Original file line number Diff line number Diff line change 68
68
"CSSStyleDeclaration" : {
69
69
"properties" : {
70
70
"property" : {
71
- "hangingPunctuation " : null ,
71
+ "boxDecorationBreak " : null ,
72
72
"blockOverflow" : null ,
73
73
"continue" : null ,
74
+ "hangingPunctuation" : null ,
74
75
"lineClamp" : null ,
75
76
"maskBorder" : null ,
76
77
"maskBorderMode" : null ,
You can’t perform that action at this time.
0 commit comments