Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11177,6 +11177,7 @@ interface CustomElementRegistry {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
*/
getName(constructor: CustomElementConstructor): string | null;
initialize(root: Node): void;
/**
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
*
Expand Down Expand Up @@ -13174,6 +13175,7 @@ interface DocumentOrShadowRoot {
readonly activeElement: Element | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
adoptedStyleSheets: CSSStyleSheet[];
readonly customElementRegistry: CustomElementRegistry | null;
/**
* Returns document's fullscreen element.
*
Expand Down Expand Up @@ -13483,6 +13485,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
*/
readonly currentCSSZoom: number;
readonly customElementRegistry: CustomElementRegistry | null;
/**
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
*
Expand Down Expand Up @@ -21171,6 +21174,7 @@ interface HTMLTemplateElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
*/
shadowRootClonable: boolean;
shadowRootCustomElementRegistry: string;
/**
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
*
Expand Down Expand Up @@ -25533,6 +25537,12 @@ declare var NavigationHistoryEntry: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
*/
interface NavigationPrecommitController {
/**
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
*/
addHandler(handler: NavigationInterceptHandler): void;
/**
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6440,19 +6440,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
10 changes: 10 additions & 0 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11166,6 +11166,7 @@ interface CustomElementRegistry {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
*/
getName(constructor: CustomElementConstructor): string | null;
initialize(root: Node): void;
/**
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
*
Expand Down Expand Up @@ -13163,6 +13164,7 @@ interface DocumentOrShadowRoot {
readonly activeElement: Element | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
adoptedStyleSheets: CSSStyleSheet[];
readonly customElementRegistry: CustomElementRegistry | null;
/**
* Returns document's fullscreen element.
*
Expand Down Expand Up @@ -13471,6 +13473,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
*/
readonly currentCSSZoom: number;
readonly customElementRegistry: CustomElementRegistry | null;
/**
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
*
Expand Down Expand Up @@ -21147,6 +21150,7 @@ interface HTMLTemplateElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
*/
shadowRootClonable: boolean;
shadowRootCustomElementRegistry: string;
/**
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
*
Expand Down Expand Up @@ -25509,6 +25513,12 @@ declare var NavigationHistoryEntry: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
*/
interface NavigationPrecommitController {
/**
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
*/
addHandler(handler: NavigationInterceptHandler): void;
/**
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/ts5.5/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6437,19 +6437,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/ts5.5/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7279,19 +7279,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
10 changes: 10 additions & 0 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11174,6 +11174,7 @@ interface CustomElementRegistry {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
*/
getName(constructor: CustomElementConstructor): string | null;
initialize(root: Node): void;
/**
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
*
Expand Down Expand Up @@ -13171,6 +13172,7 @@ interface DocumentOrShadowRoot {
readonly activeElement: Element | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
adoptedStyleSheets: CSSStyleSheet[];
readonly customElementRegistry: CustomElementRegistry | null;
/**
* Returns document's fullscreen element.
*
Expand Down Expand Up @@ -13480,6 +13482,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
*/
readonly currentCSSZoom: number;
readonly customElementRegistry: CustomElementRegistry | null;
/**
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
*
Expand Down Expand Up @@ -21168,6 +21171,7 @@ interface HTMLTemplateElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
*/
shadowRootClonable: boolean;
shadowRootCustomElementRegistry: string;
/**
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
*
Expand Down Expand Up @@ -25530,6 +25534,12 @@ declare var NavigationHistoryEntry: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
*/
interface NavigationPrecommitController {
/**
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
*/
addHandler(handler: NavigationInterceptHandler): void;
/**
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/ts5.6/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6437,19 +6437,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/ts5.6/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7279,19 +7279,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
10 changes: 10 additions & 0 deletions baselines/ts5.9/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11174,6 +11174,7 @@ interface CustomElementRegistry {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
*/
getName(constructor: CustomElementConstructor): string | null;
initialize(root: Node): void;
/**
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
*
Expand Down Expand Up @@ -13171,6 +13172,7 @@ interface DocumentOrShadowRoot {
readonly activeElement: Element | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptedStyleSheets) */
adoptedStyleSheets: CSSStyleSheet[];
readonly customElementRegistry: CustomElementRegistry | null;
/**
* Returns document's fullscreen element.
*
Expand Down Expand Up @@ -13480,6 +13482,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
*/
readonly currentCSSZoom: number;
readonly customElementRegistry: CustomElementRegistry | null;
/**
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
*
Expand Down Expand Up @@ -21168,6 +21171,7 @@ interface HTMLTemplateElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
*/
shadowRootClonable: boolean;
shadowRootCustomElementRegistry: string;
/**
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
*
Expand Down Expand Up @@ -25530,6 +25534,12 @@ declare var NavigationHistoryEntry: {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController)
*/
interface NavigationPrecommitController {
/**
* The **`addHandler()`** method of the NavigationPrecommitController interface allows you to dynamically add a handler callback function in precommit code, which will then be run after the navigation has committed.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationPrecommitController/addHandler)
*/
addHandler(handler: NavigationInterceptHandler): void;
/**
* The **`redirect()`** method of the NavigationPrecommitController interface redirects the browser to a specified URL and specifies history behavior and any desired state information.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/ts5.9/serviceworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6437,19 +6437,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/ts5.9/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7279,19 +7279,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
13 changes: 0 additions & 13 deletions baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7282,19 +7282,6 @@ interface ImportMeta {
resolve(specifier: string): string;
}

/**
* The parameter passed into an install event handler function, the **`InstallEvent`** interface represents an install action that is dispatched on the ServiceWorkerGlobalScope of a ServiceWorker. As a child of ExtendableEvent, it ensures that functional events such as FetchEvent are not dispatched during installation.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/InstallEvent)
*/
interface InstallEvent extends ExtendableEvent {
}

declare var InstallEvent: {
prototype: InstallEvent;
new(type: string, eventInitDict?: ExtendableEventInit): InstallEvent;
};

/**
* The **`KHR_parallel_shader_compile`** extension is part of the WebGL API and enables a non-blocking poll operation, so that compile/link status availability (COMPLETION_STATUS_KHR) can be queried without potentially incurring stalls. In other words you can check the status of your shaders compiling without blocking the runtime.
*
Expand Down
Loading