"use strict"; const cssstyle = require("cssstyle"); class ElementCSSInlineStyle { _initElementCSSInlineStyle() { this._settingCssText = false; this._style = new cssstyle.CSSStyleDeclaration(newCssText => { if (!this._settingCssText) { this._settingCssText = true; this.setAttributeNS(null, "style", newCssText); this._settingCssText = false; } }); } get style() { return this._style; } } module.exports = { implementation: ElementCSSInlineStyle };