Skip to content

Commit

Permalink
Merge pull request capricorn86#1357 from capricorn86/1354-incorrect-c…
Browse files Browse the repository at this point in the history
…ustom-element-tag-name-in-innerhtml

fix: [capricorn86#1354] Fixes bug where the tag name for custom elements constru…
  • Loading branch information
capricorn86 committed Mar 24, 2024
2 parents 1fa9701 + 1c57ecc commit 06b556c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 24 deletions.
24 changes: 3 additions & 21 deletions packages/happy-dom/src/custom-element/CustomElementRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,9 @@ export default class CustomElementRegistry {
const tagName = name.toUpperCase();

elementClass[PropertySymbol.ownerDocument] = this.#window.document;

Object.defineProperty(elementClass.prototype, 'localName', {
configurable: true,
get: function () {
return this[PropertySymbol.localName] || name;
}
});

Object.defineProperty(elementClass.prototype, 'tagName', {
configurable: true,
get: function () {
return this[PropertySymbol.tagName] || tagName;
}
});

Object.defineProperty(elementClass.prototype, 'namespaceURI', {
configurable: true,
get: function () {
return this[PropertySymbol.namespaceURI] || NamespaceURI.html;
}
});
elementClass[PropertySymbol.tagName] = tagName;
elementClass[PropertySymbol.localName] = name;
elementClass[PropertySymbol.namespaceURI] = NamespaceURI.html;

this[PropertySymbol.registry][name] = {
elementClass,
Expand Down
11 changes: 8 additions & 3 deletions packages/happy-dom/src/nodes/element/Element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ export default class Element
// ObservedAttributes should only be called once by CustomElementRegistry (see #117)
// CustomElementRegistry will therefore populate "[PropertySymbol.observedAttributes]" when CustomElementRegistry.define() is called
public static [PropertySymbol.observedAttributes]: string[];
public static [PropertySymbol.tagName]: string | null = null;
public static [PropertySymbol.localName]: string | null = null;
public static [PropertySymbol.namespaceURI]: string | null = null;
public static observedAttributes: string[];

// Events
Expand Down Expand Up @@ -89,16 +92,18 @@ export default class Element
public [PropertySymbol.isValue]: string | null = null;
public [PropertySymbol.computedStyle]: CSSStyleDeclaration | null = null;
public [PropertySymbol.nodeType] = NodeTypeEnum.elementNode;
public [PropertySymbol.tagName]: string | null = null;
public [PropertySymbol.localName]: string | null = null;
public [PropertySymbol.tagName]: string | null = this.constructor[PropertySymbol.tagName] || null;
public [PropertySymbol.localName]: string | null =
this.constructor[PropertySymbol.localName] || null;
public [PropertySymbol.prefix]: string | null = null;
public [PropertySymbol.shadowRoot]: ShadowRoot | null = null;
public [PropertySymbol.scrollHeight] = 0;
public [PropertySymbol.scrollWidth] = 0;
public [PropertySymbol.scrollTop] = 0;
public [PropertySymbol.scrollLeft] = 0;
public [PropertySymbol.attributes]: NamedNodeMap = new ElementNamedNodeMap(this);
public [PropertySymbol.namespaceURI]: string | null = null;
public [PropertySymbol.namespaceURI]: string | null =
this.constructor[PropertySymbol.namespaceURI] || null;

/**
* Returns tag name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,18 @@ describe('CustomElementRegistry', () => {

it('Can construct CustomElement instance using "new".', () => {
customElements.define('custom-element', CustomElement);

const customElement = new CustomElement();

expect(customElement).toBeInstanceOf(CustomElement);
expect(customElement.ownerDocument).toBe(document);
expect(customElement.localName).toBe('custom-element');
expect(customElement.tagName).toBe('CUSTOM-ELEMENT');
expect(customElement.namespaceURI).toBe(NamespaceURI.html);

const container = document.createElement('div');
container.appendChild(customElement);
expect(container.innerHTML).toBe('<custom-element></custom-element>');
});

it('Throws an error if tag name does not contain "-".', () => {
Expand Down

0 comments on commit 06b556c

Please sign in to comment.