@@ -4233,11 +4233,7 @@ interface HTMLBodyElement extends HTMLElement {
42334233 onafterprint: (this: HTMLBodyElement, ev: Event) => any;
42344234 onbeforeprint: (this: HTMLBodyElement, ev: Event) => any;
42354235 onbeforeunload: (this: HTMLBodyElement, ev: BeforeUnloadEvent) => any;
4236- onblur: (this: HTMLBodyElement, ev: FocusEvent) => any;
4237- onerror: (this: HTMLBodyElement, ev: ErrorEvent) => any;
4238- onfocus: (this: HTMLBodyElement, ev: FocusEvent) => any;
42394236 onhashchange: (this: HTMLBodyElement, ev: HashChangeEvent) => any;
4240- onload: (this: HTMLBodyElement, ev: Event) => any;
42414237 onmessage: (this: HTMLBodyElement, ev: MessageEvent) => any;
42424238 onoffline: (this: HTMLBodyElement, ev: Event) => any;
42434239 ononline: (this: HTMLBodyElement, ev: Event) => any;
@@ -4246,7 +4242,6 @@ interface HTMLBodyElement extends HTMLElement {
42464242 onpageshow: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;
42474243 onpopstate: (this: HTMLBodyElement, ev: PopStateEvent) => any;
42484244 onresize: (this: HTMLBodyElement, ev: UIEvent) => any;
4249- onscroll: (this: HTMLBodyElement, ev: UIEvent) => any;
42504245 onstorage: (this: HTMLBodyElement, ev: StorageEvent) => any;
42514246 onunload: (this: HTMLBodyElement, ev: Event) => any;
42524247 text: any;
@@ -4901,10 +4896,6 @@ interface HTMLFrameElement extends HTMLElement, GetSVGDocument {
49014896 * Sets or retrieves whether the user can resize the frame.
49024897 */
49034898 noResize: boolean;
4904- /**
4905- * Raised when the object has been completely received from the server.
4906- */
4907- onload: (this: HTMLFrameElement, ev: Event) => any;
49084899 /**
49094900 * Sets or retrieves whether the frame can be scrolled.
49104901 */
@@ -4970,17 +4961,10 @@ interface HTMLFrameSetElement extends HTMLElement {
49704961 onafterprint: (this: HTMLFrameSetElement, ev: Event) => any;
49714962 onbeforeprint: (this: HTMLFrameSetElement, ev: Event) => any;
49724963 onbeforeunload: (this: HTMLFrameSetElement, ev: BeforeUnloadEvent) => any;
4973- /**
4974- * Fires when the object loses the input focus.
4975- */
4976- onblur: (this: HTMLFrameSetElement, ev: FocusEvent) => any;
4977- onerror: (this: HTMLFrameSetElement, ev: ErrorEvent) => any;
49784964 /**
49794965 * Fires when the object receives focus.
49804966 */
4981- onfocus: (this: HTMLFrameSetElement, ev: FocusEvent) => any;
49824967 onhashchange: (this: HTMLFrameSetElement, ev: HashChangeEvent) => any;
4983- onload: (this: HTMLFrameSetElement, ev: Event) => any;
49844968 onmessage: (this: HTMLFrameSetElement, ev: MessageEvent) => any;
49854969 onoffline: (this: HTMLFrameSetElement, ev: Event) => any;
49864970 ononline: (this: HTMLFrameSetElement, ev: Event) => any;
@@ -4989,7 +4973,6 @@ interface HTMLFrameSetElement extends HTMLElement {
49894973 onpageshow: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;
49904974 onpopstate: (this: HTMLFrameSetElement, ev: PopStateEvent) => any;
49914975 onresize: (this: HTMLFrameSetElement, ev: UIEvent) => any;
4992- onscroll: (this: HTMLFrameSetElement, ev: UIEvent) => any;
49934976 onstorage: (this: HTMLFrameSetElement, ev: StorageEvent) => any;
49944977 onunload: (this: HTMLFrameSetElement, ev: Event) => any;
49954978 /**
@@ -5125,10 +5108,7 @@ interface HTMLIFrameElement extends HTMLElement, GetSVGDocument {
51255108 * Sets or retrieves whether the user can resize the frame.
51265109 */
51275110 noResize: boolean;
5128- /**
5129- * Raised when the object has been completely received from the server.
5130- */
5131- onload: (this: HTMLIFrameElement, ev: Event) => any;
5111+
51325112 readonly sandbox: DOMSettableTokenList;
51335113 /**
51345114 * Sets or retrieves whether the frame can be scrolled.
0 commit comments