UNPKG

happy-dom

Version:

Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.

125 lines (112 loc) 2.44 kB
import CSSStyleSheet from '../../css/CSSStyleSheet.js'; import * as PropertySymbol from '../../PropertySymbol.js'; import SVGElement from '../svg-element/SVGElement.js'; /** * SVG Style Element. * * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGStyleElement */ export default class SVGStyleElement extends SVGElement { // Internal properties public [PropertySymbol.sheet]: CSSStyleSheet | null = null; public [PropertySymbol.styleNode] = this; public [PropertySymbol.disabled] = false; /** * Returns media. * * @returns Media. */ public get media(): string { return this.getAttribute('media') || 'all'; } /** * Sets media. * * @param media Media. */ public set media(media: string) { this.setAttribute('media', media); } /** * Returns type. * * @deprecated * @returns Type. */ public get type(): string { return this.getAttribute('type') || 'text/css'; } /** * Sets type. * * @deprecated * @param type Type. */ public set type(type: string) { this.setAttribute('type', type); } /** * Returns title. * * @returns Title. */ public get title(): string { return this.getAttribute('title') || ''; } /** * Sets title. * * @param title Title. */ public set title(title: string) { this.setAttribute('title', title); } /** * Returns disabled. * * @returns Disabled. */ public get disabled(): boolean { return this[PropertySymbol.disabled]; } /** * Sets disabled. * * @param disabled Disabled. */ public set disabled(disabled: boolean) { this[PropertySymbol.disabled] = Boolean(disabled); } /** * Returns style. * * @returns Style. */ public get sheet(): CSSStyleSheet { if (!this[PropertySymbol.isConnected]) { return null; } if (!this[PropertySymbol.sheet]) { this[PropertySymbol.sheet] = new this[PropertySymbol.ownerDocument][ PropertySymbol.window ].CSSStyleSheet(); this[PropertySymbol.sheet].replaceSync(this.textContent); } return this[PropertySymbol.sheet]; } /** * @override */ public override [PropertySymbol.disconnectedFromDocument](): void { super[PropertySymbol.disconnectedFromDocument](); this[PropertySymbol.sheet] = null; } /** * Updates the CSSStyleSheet with the text content. */ public [PropertySymbol.updateSheet](): void { if (this[PropertySymbol.sheet]) { this[PropertySymbol.sheet].replaceSync(this.textContent); } } }