File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,12 @@ interface CSSStyleDeclaration \
88
99interface CSSStyleProperties replaceReference= CSSStyleDeclaration {
1010 property wordWrap deprecated= "The 'wordWrap' property is non-standard and has been replaced by 'overflow-wrap' in modern CSS."
11-
12- // The corresponding standardized property is not supported by
13- // anyone as of 2024-10.
14- property webkitLineClamp supported= #true
11+ }
12+
13+ removals {
14+ interface CSSStyleProperties {
15+ // The corresponding standardized property is not supported by
16+ // anyone as of 2024-10.
17+ property webkitLineClamp deprecated= ""
18+ }
1519}
Original file line number Diff line number Diff line change @@ -415,6 +415,9 @@ function convertForRemovals(obj: unknown): unknown {
415415 // Replace empty objects with null
416416 return Object . keys ( newObj ) . length === 0 ? null : newObj ;
417417 }
418+ if ( obj === "" ) {
419+ return null ;
420+ }
418421 return obj ;
419422}
420423
You can’t perform that action at this time.
0 commit comments