Definition
HTML Standard defines CustomElementRegistry
[Exposed=Window]
interface CustomElementRegistry {
constructor();
[CEReactions] undefined define(DOMString name, CustomElementConstructor constructor, optional ElementDefinitionOptions options = {});
(CustomElementConstructor or undefined) get(DOMString name);
DOMString? getName(CustomElementConstructor constructor);
Promise<CustomElementConstructor> whenDefined(DOMString name);
[CEReactions] undefined upgrade(Node root);
undefined initialize(Node root);
};
Methods and attributes that return objects implementing CustomElementRegistry
Referring IDL interfaces/dictionaries
Referring specifications
- DOM Standard refers to
CustomElementRegistry