@@ -4230,25 +4230,25 @@ interface HTMLBodyElement extends HTMLElement {
4230
4230
bgProperties: string;
4231
4231
link: any;
4232
4232
noWrap: boolean;
4233
- onafterprint: (this: HTMLBodyElement, ev: Event) => any;
4234
- onbeforeprint: (this: HTMLBodyElement, ev: Event) => any;
4235
- 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;
4239
- onhashchange: (this: HTMLBodyElement, ev: HashChangeEvent) => any;
4240
- onload: (this: HTMLBodyElement, ev: Event) => any;
4241
- onmessage: (this: HTMLBodyElement, ev: MessageEvent) => any;
4242
- onoffline: (this: HTMLBodyElement, ev: Event) => any;
4243
- ononline: (this: HTMLBodyElement, ev: Event) => any;
4244
- onorientationchange: (this: HTMLBodyElement, ev: Event) => any;
4245
- onpagehide: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;
4246
- onpageshow: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;
4247
- onpopstate: (this: HTMLBodyElement, ev: PopStateEvent) => any;
4248
- onresize: (this: HTMLBodyElement, ev: UIEvent) => any;
4249
- onscroll: (this: HTMLBodyElement, ev: UIEvent) => any;
4250
- onstorage: (this: HTMLBodyElement, ev: StorageEvent) => any;
4251
- onunload: (this: HTMLBodyElement, ev: Event) => any;
4233
+ onafterprint(this: HTMLBodyElement, ev: Event): any;
4234
+ onbeforeprint(this: HTMLBodyElement, ev: Event): any;
4235
+ 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;
4239
+ onhashchange(this: HTMLBodyElement, ev: HashChangeEvent): any;
4240
+ onload(this: HTMLBodyElement, ev: Event): any;
4241
+ onmessage(this: HTMLBodyElement, ev: MessageEvent): any;
4242
+ onoffline(this: HTMLBodyElement, ev: Event): any;
4243
+ ononline(this: HTMLBodyElement, ev: Event): any;
4244
+ onorientationchange(this: HTMLBodyElement, ev: Event): any;
4245
+ onpagehide(this: HTMLBodyElement, ev: PageTransitionEvent): any;
4246
+ onpageshow(this: HTMLBodyElement, ev: PageTransitionEvent): any;
4247
+ onpopstate(this: HTMLBodyElement, ev: PopStateEvent): any;
4248
+ onresize(this: HTMLBodyElement, ev: UIEvent): any;
4249
+ onscroll(this: HTMLBodyElement, ev: UIEvent): any;
4250
+ onstorage(this: HTMLBodyElement, ev: StorageEvent): any;
4251
+ onunload(this: HTMLBodyElement, ev: Event): any;
4252
4252
text: any;
4253
4253
vLink: any;
4254
4254
addEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, useCapture?: boolean): void;
@@ -4565,73 +4565,73 @@ interface HTMLElement extends Element {
4565
4565
readonly offsetParent: Element;
4566
4566
readonly offsetTop: number;
4567
4567
readonly offsetWidth: number;
4568
- onabort: (this: HTMLElement, ev: UIEvent) => any;
4569
- onactivate: (this: HTMLElement, ev: UIEvent) => any;
4570
- onbeforeactivate: (this: HTMLElement, ev: UIEvent) => any;
4571
- onbeforecopy: (this: HTMLElement, ev: ClipboardEvent) => any;
4572
- onbeforecut: (this: HTMLElement, ev: ClipboardEvent) => any;
4573
- onbeforedeactivate: (this: HTMLElement, ev: UIEvent) => any;
4574
- onbeforepaste: (this: HTMLElement, ev: ClipboardEvent) => any;
4575
- onblur: (this: HTMLElement, ev: FocusEvent) => any;
4576
- oncanplay: (this: HTMLElement, ev: Event) => any;
4577
- oncanplaythrough: (this: HTMLElement, ev: Event) => any;
4578
- onchange: (this: HTMLElement, ev: Event) => any;
4579
- onclick: (this: HTMLElement, ev: MouseEvent) => any;
4580
- oncontextmenu: (this: HTMLElement, ev: PointerEvent) => any;
4581
- oncopy: (this: HTMLElement, ev: ClipboardEvent) => any;
4582
- oncuechange: (this: HTMLElement, ev: Event) => any;
4583
- oncut: (this: HTMLElement, ev: ClipboardEvent) => any;
4584
- ondblclick: (this: HTMLElement, ev: MouseEvent) => any;
4585
- ondeactivate: (this: HTMLElement, ev: UIEvent) => any;
4586
- ondrag: (this: HTMLElement, ev: DragEvent) => any;
4587
- ondragend: (this: HTMLElement, ev: DragEvent) => any;
4588
- ondragenter: (this: HTMLElement, ev: DragEvent) => any;
4589
- ondragleave: (this: HTMLElement, ev: DragEvent) => any;
4590
- ondragover: (this: HTMLElement, ev: DragEvent) => any;
4591
- ondragstart: (this: HTMLElement, ev: DragEvent) => any;
4592
- ondrop: (this: HTMLElement, ev: DragEvent) => any;
4593
- ondurationchange: (this: HTMLElement, ev: Event) => any;
4594
- onemptied: (this: HTMLElement, ev: Event) => any;
4595
- onended: (this: HTMLElement, ev: MediaStreamErrorEvent) => any;
4596
- onerror: (this: HTMLElement, ev: ErrorEvent) => any;
4597
- onfocus: (this: HTMLElement, ev: FocusEvent) => any;
4598
- oninput: (this: HTMLElement, ev: Event) => any;
4599
- oninvalid: (this: HTMLElement, ev: Event) => any;
4600
- onkeydown: (this: HTMLElement, ev: KeyboardEvent) => any;
4601
- onkeypress: (this: HTMLElement, ev: KeyboardEvent) => any;
4602
- onkeyup: (this: HTMLElement, ev: KeyboardEvent) => any;
4603
- onload: (this: HTMLElement, ev: Event) => any;
4604
- onloadeddata: (this: HTMLElement, ev: Event) => any;
4605
- onloadedmetadata: (this: HTMLElement, ev: Event) => any;
4606
- onloadstart: (this: HTMLElement, ev: Event) => any;
4607
- onmousedown: (this: HTMLElement, ev: MouseEvent) => any;
4608
- onmouseenter: (this: HTMLElement, ev: MouseEvent) => any;
4609
- onmouseleave: (this: HTMLElement, ev: MouseEvent) => any;
4610
- onmousemove: (this: HTMLElement, ev: MouseEvent) => any;
4611
- onmouseout: (this: HTMLElement, ev: MouseEvent) => any;
4612
- onmouseover: (this: HTMLElement, ev: MouseEvent) => any;
4613
- onmouseup: (this: HTMLElement, ev: MouseEvent) => any;
4614
- onmousewheel: (this: HTMLElement, ev: WheelEvent) => any;
4615
- onmscontentzoom: (this: HTMLElement, ev: UIEvent) => any;
4616
- onmsmanipulationstatechanged: (this: HTMLElement, ev: MSManipulationEvent) => any;
4617
- onpaste: (this: HTMLElement, ev: ClipboardEvent) => any;
4618
- onpause: (this: HTMLElement, ev: Event) => any;
4619
- onplay: (this: HTMLElement, ev: Event) => any;
4620
- onplaying: (this: HTMLElement, ev: Event) => any;
4621
- onprogress: (this: HTMLElement, ev: ProgressEvent) => any;
4622
- onratechange: (this: HTMLElement, ev: Event) => any;
4623
- onreset: (this: HTMLElement, ev: Event) => any;
4624
- onscroll: (this: HTMLElement, ev: UIEvent) => any;
4625
- onseeked: (this: HTMLElement, ev: Event) => any;
4626
- onseeking: (this: HTMLElement, ev: Event) => any;
4627
- onselect: (this: HTMLElement, ev: UIEvent) => any;
4628
- onselectstart: (this: HTMLElement, ev: Event) => any;
4629
- onstalled: (this: HTMLElement, ev: Event) => any;
4630
- onsubmit: (this: HTMLElement, ev: Event) => any;
4631
- onsuspend: (this: HTMLElement, ev: Event) => any;
4632
- ontimeupdate: (this: HTMLElement, ev: Event) => any;
4633
- onvolumechange: (this: HTMLElement, ev: Event) => any;
4634
- onwaiting: (this: HTMLElement, ev: Event) => any;
4568
+ onabort(this: HTMLElement, ev: UIEvent): any;
4569
+ onactivate(this: HTMLElement, ev: UIEvent): any;
4570
+ onbeforeactivate(this: HTMLElement, ev: UIEvent): any;
4571
+ onbeforecopy(this: HTMLElement, ev: ClipboardEvent): any;
4572
+ onbeforecut(this: HTMLElement, ev: ClipboardEvent): any;
4573
+ onbeforedeactivate(this: HTMLElement, ev: UIEvent): any;
4574
+ onbeforepaste(this: HTMLElement, ev: ClipboardEvent): any;
4575
+ onblur(this: HTMLElement, ev: FocusEvent): any;
4576
+ oncanplay(this: HTMLElement, ev: Event): any;
4577
+ oncanplaythrough(this: HTMLElement, ev: Event): any;
4578
+ onchange(this: HTMLElement, ev: Event): any;
4579
+ onclick(this: HTMLElement, ev: MouseEvent): any;
4580
+ oncontextmenu(this: HTMLElement, ev: PointerEvent): any;
4581
+ oncopy(this: HTMLElement, ev: ClipboardEvent): any;
4582
+ oncuechange(this: HTMLElement, ev: Event): any;
4583
+ oncut(this: HTMLElement, ev: ClipboardEvent): any;
4584
+ ondblclick(this: HTMLElement, ev: MouseEvent): any;
4585
+ ondeactivate(this: HTMLElement, ev: UIEvent): any;
4586
+ ondrag(this: HTMLElement, ev: DragEvent): any;
4587
+ ondragend(this: HTMLElement, ev: DragEvent): any;
4588
+ ondragenter(this: HTMLElement, ev: DragEvent): any;
4589
+ ondragleave(this: HTMLElement, ev: DragEvent): any;
4590
+ ondragover(this: HTMLElement, ev: DragEvent): any;
4591
+ ondragstart(this: HTMLElement, ev: DragEvent): any;
4592
+ ondrop(this: HTMLElement, ev: DragEvent): any;
4593
+ ondurationchange(this: HTMLElement, ev: Event): any;
4594
+ onemptied(this: HTMLElement, ev: Event): any;
4595
+ onended(this: HTMLElement, ev: MediaStreamErrorEvent): any;
4596
+ onerror(this: HTMLElement, ev: ErrorEvent): any;
4597
+ onfocus(this: HTMLElement, ev: FocusEvent): any;
4598
+ oninput(this: HTMLElement, ev: Event): any;
4599
+ oninvalid(this: HTMLElement, ev: Event): any;
4600
+ onkeydown(this: HTMLElement, ev: KeyboardEvent): any;
4601
+ onkeypress(this: HTMLElement, ev: KeyboardEvent): any;
4602
+ onkeyup(this: HTMLElement, ev: KeyboardEvent): any;
4603
+ onload(this: HTMLElement, ev: Event): any;
4604
+ onloadeddata(this: HTMLElement, ev: Event): any;
4605
+ onloadedmetadata(this: HTMLElement, ev: Event): any;
4606
+ onloadstart(this: HTMLElement, ev: Event): any;
4607
+ onmousedown(this: HTMLElement, ev: MouseEvent): any;
4608
+ onmouseenter(this: HTMLElement, ev: MouseEvent): any;
4609
+ onmouseleave(this: HTMLElement, ev: MouseEvent): any;
4610
+ onmousemove(this: HTMLElement, ev: MouseEvent): any;
4611
+ onmouseout(this: HTMLElement, ev: MouseEvent): any;
4612
+ onmouseover(this: HTMLElement, ev: MouseEvent): any;
4613
+ onmouseup(this: HTMLElement, ev: MouseEvent): any;
4614
+ onmousewheel(this: HTMLElement, ev: WheelEvent): any;
4615
+ onmscontentzoom(this: HTMLElement, ev: UIEvent): any;
4616
+ onmsmanipulationstatechanged(this: HTMLElement, ev: MSManipulationEvent): any;
4617
+ onpaste(this: HTMLElement, ev: ClipboardEvent): any;
4618
+ onpause(this: HTMLElement, ev: Event): any;
4619
+ onplay(this: HTMLElement, ev: Event): any;
4620
+ onplaying(this: HTMLElement, ev: Event): any;
4621
+ onprogress(this: HTMLElement, ev: ProgressEvent): any;
4622
+ onratechange(this: HTMLElement, ev: Event): any;
4623
+ onreset(this: HTMLElement, ev: Event): any;
4624
+ onscroll(this: HTMLElement, ev: UIEvent): any;
4625
+ onseeked(this: HTMLElement, ev: Event): any;
4626
+ onseeking(this: HTMLElement, ev: Event): any;
4627
+ onselect(this: HTMLElement, ev: UIEvent): any;
4628
+ onselectstart(this: HTMLElement, ev: Event): any;
4629
+ onstalled(this: HTMLElement, ev: Event): any;
4630
+ onsubmit(this: HTMLElement, ev: Event): any;
4631
+ onsuspend(this: HTMLElement, ev: Event): any;
4632
+ ontimeupdate(this: HTMLElement, ev: Event): any;
4633
+ onvolumechange(this: HTMLElement, ev: Event): any;
4634
+ onwaiting(this: HTMLElement, ev: Event): any;
4635
4635
outerText: string;
4636
4636
spellcheck: boolean;
4637
4637
readonly style: CSSStyleDeclaration;
@@ -4904,7 +4904,7 @@ interface HTMLFrameElement extends HTMLElement, GetSVGDocument {
4904
4904
/**
4905
4905
* Raised when the object has been completely received from the server.
4906
4906
*/
4907
- onload: (this: HTMLFrameElement, ev: Event) => any;
4907
+ onload(this: HTMLFrameElement, ev: Event): any;
4908
4908
/**
4909
4909
* Sets or retrieves whether the frame can be scrolled.
4910
4910
*/
@@ -4967,31 +4967,31 @@ interface HTMLFrameSetElement extends HTMLElement {
4967
4967
*/
4968
4968
frameSpacing: any;
4969
4969
name: string;
4970
- onafterprint: (this: HTMLFrameSetElement, ev: Event) => any;
4971
- onbeforeprint: (this: HTMLFrameSetElement, ev: Event) => any;
4972
- onbeforeunload: (this: HTMLFrameSetElement, ev: BeforeUnloadEvent) => any;
4970
+ onafterprint(this: HTMLFrameSetElement, ev: Event): any;
4971
+ onbeforeprint(this: HTMLFrameSetElement, ev: Event): any;
4972
+ onbeforeunload(this: HTMLFrameSetElement, ev: BeforeUnloadEvent): any;
4973
4973
/**
4974
4974
* Fires when the object loses the input focus.
4975
4975
*/
4976
- onblur: (this: HTMLFrameSetElement, ev: FocusEvent) => any;
4977
- onerror: (this: HTMLFrameSetElement, ev: ErrorEvent) => any;
4976
+ onblur(this: HTMLFrameSetElement, ev: FocusEvent): any;
4977
+ onerror(this: HTMLFrameSetElement, ev: ErrorEvent): any;
4978
4978
/**
4979
4979
* Fires when the object receives focus.
4980
4980
*/
4981
- onfocus: (this: HTMLFrameSetElement, ev: FocusEvent) => any;
4982
- onhashchange: (this: HTMLFrameSetElement, ev: HashChangeEvent) => any;
4983
- onload: (this: HTMLFrameSetElement, ev: Event) => any;
4984
- onmessage: (this: HTMLFrameSetElement, ev: MessageEvent) => any;
4985
- onoffline: (this: HTMLFrameSetElement, ev: Event) => any;
4986
- ononline: (this: HTMLFrameSetElement, ev: Event) => any;
4987
- onorientationchange: (this: HTMLFrameSetElement, ev: Event) => any;
4988
- onpagehide: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;
4989
- onpageshow: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;
4990
- onpopstate: (this: HTMLFrameSetElement, ev: PopStateEvent) => any;
4991
- onresize: (this: HTMLFrameSetElement, ev: UIEvent) => any;
4992
- onscroll: (this: HTMLFrameSetElement, ev: UIEvent) => any;
4993
- onstorage: (this: HTMLFrameSetElement, ev: StorageEvent) => any;
4994
- onunload: (this: HTMLFrameSetElement, ev: Event) => any;
4981
+ onfocus(this: HTMLFrameSetElement, ev: FocusEvent): any;
4982
+ onhashchange(this: HTMLFrameSetElement, ev: HashChangeEvent): any;
4983
+ onload(this: HTMLFrameSetElement, ev: Event): any;
4984
+ onmessage(this: HTMLFrameSetElement, ev: MessageEvent): any;
4985
+ onoffline(this: HTMLFrameSetElement, ev: Event): any;
4986
+ ononline(this: HTMLFrameSetElement, ev: Event): any;
4987
+ onorientationchange(this: HTMLFrameSetElement, ev: Event): any;
4988
+ onpagehide(this: HTMLFrameSetElement, ev: PageTransitionEvent): any;
4989
+ onpageshow(this: HTMLFrameSetElement, ev: PageTransitionEvent): any;
4990
+ onpopstate(this: HTMLFrameSetElement, ev: PopStateEvent): any;
4991
+ onresize(this: HTMLFrameSetElement, ev: UIEvent): any;
4992
+ onscroll(this: HTMLFrameSetElement, ev: UIEvent): any;
4993
+ onstorage(this: HTMLFrameSetElement, ev: StorageEvent): any;
4994
+ onunload(this: HTMLFrameSetElement, ev: Event): any;
4995
4995
/**
4996
4996
* Sets or retrieves the frame heights of the object.
4997
4997
*/
@@ -5128,7 +5128,7 @@ interface HTMLIFrameElement extends HTMLElement, GetSVGDocument {
5128
5128
/**
5129
5129
* Raised when the object has been completely received from the server.
5130
5130
*/
5131
- onload: (this: HTMLIFrameElement, ev: Event) => any;
5131
+ onload(this: HTMLIFrameElement, ev: Event): any;
5132
5132
readonly sandbox: DOMSettableTokenList;
5133
5133
/**
5134
5134
* Sets or retrieves whether the frame can be scrolled.
0 commit comments