File tree 4 files changed +27
-13
lines changed 4 files changed +27
-13
lines changed Original file line number Diff line number Diff line change @@ -2972,11 +2972,11 @@ interface CSSStyleDeclaration {
2972
2972
outlineOffset: string;
2973
2973
outlineStyle: string;
2974
2974
outlineWidth: string;
2975
- overflow: string | null ;
2975
+ overflow: string;
2976
2976
overflowAnchor: string;
2977
2977
overflowWrap: string;
2978
- overflowX: string | null ;
2979
- overflowY: string | null ;
2978
+ overflowX: string;
2979
+ overflowY: string;
2980
2980
padding: string | null;
2981
2981
paddingBottom: string | null;
2982
2982
paddingLeft: string | null;
@@ -3142,6 +3142,7 @@ interface CSSStyleDeclaration {
3142
3142
webkitFlexWrap: string;
3143
3143
/** @deprecated */
3144
3144
webkitJustifyContent: string;
3145
+ webkitLineClamp: string;
3145
3146
/** @deprecated */
3146
3147
webkitMask: string;
3147
3148
/** @deprecated */
Original file line number Diff line number Diff line change
1
+ partial interface CSSStyleDeclaration {
2
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowX;
3
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowY;
4
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflow;
5
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowInline;
6
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString overflowBlock;
7
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString textOverflow;
8
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString blockOverflow;
9
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString lineClamp;
10
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString webkitLineClamp;
11
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString maxLines;
12
+ [CEReactions] attribute [TreatNullAs=EmptyString] CSSOMString continue;
13
+ };
Original file line number Diff line number Diff line change 44
44
"url" : " https://drafts.csswg.org/cssom-view/" ,
45
45
"title" : " CSSOM View"
46
46
},
47
+ {
48
+ "url" : " https://www.w3.org/TR/css-overflow-3/" ,
49
+ "title" : " CSS Overflow"
50
+ },
47
51
{
48
52
"url" : " https://drafts.csswg.org/css-scroll-anchoring/" ,
49
53
"title" : " CSS Scroll Anchoring"
Original file line number Diff line number Diff line change 69
69
"properties" : {
70
70
"property" : {
71
71
"hangingPunctuation" : null ,
72
+ "blockOverflow" : null ,
73
+ "continue" : null ,
74
+ "lineClamp" : null ,
72
75
"maskBorder" : null ,
73
76
"maskBorderMode" : null ,
74
77
"maskBorderOutset" : null ,
79
82
"maskClip" : null ,
80
83
"maskMode" : null ,
81
84
"maskOrigin" : null ,
85
+ "maxLines" : null ,
86
+ "overflowBlock" : null ,
87
+ "overflowInline" : null ,
82
88
"textAlignAll" : null
83
89
}
84
90
}
130
136
}
131
137
}
132
138
},
133
- "SVGClipPathElement" : {
134
- "implements" : [
135
- " SVGUnitTypes"
136
- ]
137
- },
138
139
"SVGElementInstance" : {
139
140
"properties" : {
140
141
"property" : {
174
175
" SVGUnitTypes"
175
176
]
176
177
},
177
- "SVGMaskElement" : {
178
- "implements" : [
179
- " SVGUnitTypes"
180
- ]
181
- },
182
178
"SVGMatrix" : null ,
183
179
"SVGPatternElement" : {
184
180
"implements" : [
You can’t perform that action at this time.
0 commit comments