happy-dom-without-node
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.
38 lines (34 loc) • 895 B
text/typescript
import CSSRule from '../CSSRule.js';
import * as PropertySymbol from '../../PropertySymbol.js';
import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration.js';
/**
* CSSRule interface.
*/
export default class CSSStyleRule extends CSSRule {
public readonly type = CSSRule.STYLE_RULE;
public readonly selectorText = '';
public readonly styleMap = new Map();
public [PropertySymbol.cssText] = '';
#style: CSSStyleDeclaration = null;
/**
* Returns style.
*
* @returns Style.
*/
public get style(): CSSStyleDeclaration {
if (!this.#style) {
this.#style = new CSSStyleDeclaration();
(<CSSRule>this.#style.parentRule) = this;
this.#style.cssText = this[PropertySymbol.cssText];
}
return this.#style;
}
/**
* Returns css text.
*
* @returns CSS text.
*/
public get cssText(): string {
return `${this.selectorText} { ${this.style.cssText} }`;
}
}