@@ -4233,11 +4233,7 @@ interface HTMLBodyElement extends HTMLElement {
4233
4233
onafterprint: (this: HTMLBodyElement, ev: Event) => any;
4234
4234
onbeforeprint: (this: HTMLBodyElement, ev: Event) => any;
4235
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
4236
onhashchange: (this: HTMLBodyElement, ev: HashChangeEvent) => any;
4240
- onload: (this: HTMLBodyElement, ev: Event) => any;
4241
4237
onmessage: (this: HTMLBodyElement, ev: MessageEvent) => any;
4242
4238
onoffline: (this: HTMLBodyElement, ev: Event) => any;
4243
4239
ononline: (this: HTMLBodyElement, ev: Event) => any;
@@ -4246,7 +4242,6 @@ interface HTMLBodyElement extends HTMLElement {
4246
4242
onpageshow: (this: HTMLBodyElement, ev: PageTransitionEvent) => any;
4247
4243
onpopstate: (this: HTMLBodyElement, ev: PopStateEvent) => any;
4248
4244
onresize: (this: HTMLBodyElement, ev: UIEvent) => any;
4249
- onscroll: (this: HTMLBodyElement, ev: UIEvent) => any;
4250
4245
onstorage: (this: HTMLBodyElement, ev: StorageEvent) => any;
4251
4246
onunload: (this: HTMLBodyElement, ev: Event) => any;
4252
4247
text: any;
@@ -4838,6 +4833,7 @@ interface HTMLFormElement extends HTMLElement {
4838
4833
* Fires when a FORM is about to be submitted.
4839
4834
*/
4840
4835
submit(): void;
4836
+ reportValidity(): boolean;
4841
4837
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any, useCapture?: boolean): void;
4842
4838
addEventListener(type: string, listener: EventListenerOrEventListenerObject, useCapture?: boolean): void;
4843
4839
[name: string]: any;
@@ -4901,10 +4897,6 @@ interface HTMLFrameElement extends HTMLElement, GetSVGDocument {
4901
4897
* Sets or retrieves whether the user can resize the frame.
4902
4898
*/
4903
4899
noResize: boolean;
4904
- /**
4905
- * Raised when the object has been completely received from the server.
4906
- */
4907
- onload: (this: HTMLFrameElement, ev: Event) => any;
4908
4900
/**
4909
4901
* Sets or retrieves whether the frame can be scrolled.
4910
4902
*/
@@ -4970,17 +4962,7 @@ interface HTMLFrameSetElement extends HTMLElement {
4970
4962
onafterprint: (this: HTMLFrameSetElement, ev: Event) => any;
4971
4963
onbeforeprint: (this: HTMLFrameSetElement, ev: Event) => any;
4972
4964
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;
4978
- /**
4979
- * Fires when the object receives focus.
4980
- */
4981
- onfocus: (this: HTMLFrameSetElement, ev: FocusEvent) => any;
4982
4965
onhashchange: (this: HTMLFrameSetElement, ev: HashChangeEvent) => any;
4983
- onload: (this: HTMLFrameSetElement, ev: Event) => any;
4984
4966
onmessage: (this: HTMLFrameSetElement, ev: MessageEvent) => any;
4985
4967
onoffline: (this: HTMLFrameSetElement, ev: Event) => any;
4986
4968
ononline: (this: HTMLFrameSetElement, ev: Event) => any;
@@ -4989,7 +4971,6 @@ interface HTMLFrameSetElement extends HTMLElement {
4989
4971
onpageshow: (this: HTMLFrameSetElement, ev: PageTransitionEvent) => any;
4990
4972
onpopstate: (this: HTMLFrameSetElement, ev: PopStateEvent) => any;
4991
4973
onresize: (this: HTMLFrameSetElement, ev: UIEvent) => any;
4992
- onscroll: (this: HTMLFrameSetElement, ev: UIEvent) => any;
4993
4974
onstorage: (this: HTMLFrameSetElement, ev: StorageEvent) => any;
4994
4975
onunload: (this: HTMLFrameSetElement, ev: Event) => any;
4995
4976
/**
@@ -5125,10 +5106,6 @@ interface HTMLIFrameElement extends HTMLElement, GetSVGDocument {
5125
5106
* Sets or retrieves whether the user can resize the frame.
5126
5107
*/
5127
5108
noResize: boolean;
5128
- /**
5129
- * Raised when the object has been completely received from the server.
5130
- */
5131
- onload: (this: HTMLIFrameElement, ev: Event) => any;
5132
5109
readonly sandbox: DOMSettableTokenList;
5133
5110
/**
5134
5111
* Sets or retrieves whether the frame can be scrolled.
@@ -8225,6 +8202,7 @@ interface Navigator extends Object, NavigatorID, NavigatorOnLine, NavigatorConte
8225
8202
readonly pointerEnabled: boolean;
8226
8203
readonly serviceWorker: ServiceWorkerContainer;
8227
8204
readonly webdriver: boolean;
8205
+ readonly doNotTrack: string | null;
8228
8206
readonly hardwareConcurrency: number;
8229
8207
readonly languages: string[];
8230
8208
getGamepads(): Gamepad[];
@@ -14026,7 +14004,7 @@ interface EcKeyAlgorithm extends KeyAlgorithm {
14026
14004
typedCurve: string;
14027
14005
}
14028
14006
14029
- interface EcKeyImportParams {
14007
+ interface EcKeyImportParams extends Algorithm {
14030
14008
namedCurve: string;
14031
14009
}
14032
14010
0 commit comments