CustomElementRegistry: upgrade() method
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
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.
Syntax
upgrade(root)
Parameters
Return value
None (undefined).
Description
When an HTML element is parsed or created, it may use a tag name that corresponds to a custom element (e.g., <my-element>). If the custom element's class has not yet been registered with the appropriate CustomElementRegistry at the time the element is created, the element exists as an undefined, plain HTMLElement. It looks and behaves like any unknown element — it has no special behavior, lifecycle callbacks, or custom prototype methods.
Upgrading is the process of retroactively promoting such an element to a full-fledged custom element once its definition becomes available. When an element is upgraded:
- Its prototype is swapped to the custom element class that was registered with
define(). - Its
connectedCallback()and any other applicable lifecycle callbacks are invoked. - If the class defines
observedAttributes, theattributeChangedCallback()is called for each attribute that already has a value.
Normally, elements are upgraded automatically when their definition is registered via define(), but only if they are already connected to the document. The upgrade() method is useful when you need to upgrade elements that exist in a disconnected DOM subtree (for example, elements created via Document.createElement() or parsed into a DocumentFragment) before they are inserted into the document.
Examples
Taken from the HTML spec:
const el = document.createElement("spider-man");
class SpiderMan extends HTMLElement {}
customElements.define("spider-man", SpiderMan);
console.assert(!(el instanceof SpiderMan)); // not yet upgraded
customElements.upgrade(el);
console.assert(el instanceof SpiderMan); // upgraded!
Specifications
| Specification |
|---|
| HTML> # dom-customelementregistry-upgrade-dev> |