Baseline Widely available *
The CustomElementRegistry
interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements
property.
CustomElementRegistry.define()
Defines a new custom element.
CustomElementRegistry.get()
Returns the constructor for the named custom element, or undefined
if the custom element is not defined.
CustomElementRegistry.getName()
Returns the name for the already-defined custom element, or null
if the custom element is not defined.
CustomElementRegistry.upgrade()
Upgrades a custom element directly, even before it is connected to its shadow root.
CustomElementRegistry.whenDefined()
Returns an empty Promise
that resolves when a custom element becomes defined with the given name. If such a custom element is already defined, the returned promise is immediately fulfilled.
See the Examples section in our guide to using custom elements.
Specifications Browser compatibilityRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4