@@ -4122,8 +4122,11 @@ interface CSSStyleDeclaration {
41224122 fontStyle: string;
41234123 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis) */
41244124 fontSynthesis: string;
4125+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps) */
41254126 fontSynthesisSmallCaps: string;
4127+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style) */
41264128 fontSynthesisStyle: string;
4129+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight) */
41274130 fontSynthesisWeight: string;
41284131 /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant) */
41294132 fontVariant: string;
@@ -8885,6 +8888,7 @@ interface GlobalEventHandlersEventMap {
88858888 "reset": Event;
88868889 "resize": UIEvent;
88878890 "scroll": Event;
8891+ "scrollend": Event;
88888892 "securitypolicyviolation": SecurityPolicyViolationEvent;
88898893 "seeked": Event;
88908894 "seeking": Event;
@@ -9235,6 +9239,8 @@ interface GlobalEventHandlers {
92359239 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
92369240 */
92379241 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;
92389244 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
92399245 onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
92409246 /**
@@ -27730,6 +27736,8 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
2773027736 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
2773127737 */
2773227738declare 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;
2773327741/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
2773427742declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
2773527743/**
0 commit comments