@@ -4122,8 +4122,11 @@ interface CSSStyleDeclaration {
4122
4122
fontStyle: string;
4123
4123
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis) */
4124
4124
fontSynthesis: string;
4125
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps) */
4125
4126
fontSynthesisSmallCaps: string;
4127
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style) */
4126
4128
fontSynthesisStyle: string;
4129
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight) */
4127
4130
fontSynthesisWeight: string;
4128
4131
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant) */
4129
4132
fontVariant: string;
@@ -8885,6 +8888,7 @@ interface GlobalEventHandlersEventMap {
8885
8888
"reset": Event;
8886
8889
"resize": UIEvent;
8887
8890
"scroll": Event;
8891
+ "scrollend": Event;
8888
8892
"securitypolicyviolation": SecurityPolicyViolationEvent;
8889
8893
"seeked": Event;
8890
8894
"seeking": Event;
@@ -9235,6 +9239,8 @@ interface GlobalEventHandlers {
9235
9239
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
9236
9240
*/
9237
9241
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9242
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */
9243
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9238
9244
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
9239
9245
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
9240
9246
/**
@@ -27730,6 +27736,8 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
27730
27736
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
27731
27737
*/
27732
27738
declare var onscroll: ((this: Window, ev: Event) => any) | null;
27739
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */
27740
+ declare var onscrollend: ((this: Window, ev: Event) => any) | null;
27733
27741
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
27734
27742
declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
27735
27743
/**
0 commit comments