Sha256: 96c9aedce58c3b5a2eb0eb4a4493d25210e9faefaa2257d7261e888ed2979ae7
Contents?: true
Size: 889 Bytes
Versions: 42
Compression:
Stored size: 889 Bytes
Contents
//.CommonJS var CSSOM = { CSSRule: require("./CSSRule").CSSRule, }; ///CommonJS /** * @constructor * @see https://drafts.csswg.org/css-conditional-3/#the-csssupportsrule-interface */ CSSOM.CSSSupportsRule = function CSSSupportsRule() { CSSOM.CSSRule.call(this); this.conditionText = ''; this.cssRules = []; }; CSSOM.CSSSupportsRule.prototype = new CSSOM.CSSRule(); CSSOM.CSSSupportsRule.prototype.constructor = CSSOM.CSSSupportsRule; CSSOM.CSSSupportsRule.prototype.type = 12; Object.defineProperty(CSSOM.CSSSupportsRule.prototype, "cssText", { get: function() { var cssTexts = []; for (var i = 0, length = this.cssRules.length; i < length; i++) { cssTexts.push(this.cssRules[i].cssText); } return "@supports " + this.conditionText + " {" + cssTexts.join("") + "}"; } }); //.CommonJS exports.CSSSupportsRule = CSSOM.CSSSupportsRule; ///CommonJS
Version data entries
42 entries across 22 versions & 3 rubygems