diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index dfaf26be5..5d2186d13 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -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. * @@ -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. * @@ -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. * @@ -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