You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
678 B
25 lines
678 B
//.CommonJS |
|
var CSSOM = { |
|
CSSRule: require("./CSSRule").CSSRule, |
|
CSSGroupingRule: require("./CSSGroupingRule").CSSGroupingRule |
|
}; |
|
///CommonJS |
|
|
|
|
|
/** |
|
* @constructor |
|
* @see https://www.w3.org/TR/css-conditional-3/#the-cssconditionrule-interface |
|
*/ |
|
CSSOM.CSSConditionRule = function CSSConditionRule() { |
|
CSSOM.CSSGroupingRule.call(this); |
|
this.cssRules = []; |
|
}; |
|
|
|
CSSOM.CSSConditionRule.prototype = new CSSOM.CSSGroupingRule(); |
|
CSSOM.CSSConditionRule.prototype.constructor = CSSOM.CSSConditionRule; |
|
CSSOM.CSSConditionRule.prototype.conditionText = '' |
|
CSSOM.CSSConditionRule.prototype.cssText = '' |
|
|
|
//.CommonJS |
|
exports.CSSConditionRule = CSSOM.CSSConditionRule; |
|
///CommonJS
|
|
|