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.
37 lines
1022 B
37 lines
1022 B
//.CommonJS |
|
var CSSOM = { |
|
CSSRule: require("./CSSRule").CSSRule |
|
}; |
|
///CommonJS |
|
|
|
|
|
/** |
|
* @constructor |
|
* @see http://www.w3.org/TR/shadow-dom/#host-at-rule |
|
*/ |
|
CSSOM.CSSStartingStyleRule = function CSSStartingStyleRule() { |
|
CSSOM.CSSRule.call(this); |
|
this.cssRules = []; |
|
}; |
|
|
|
CSSOM.CSSStartingStyleRule.prototype = new CSSOM.CSSRule(); |
|
CSSOM.CSSStartingStyleRule.prototype.constructor = CSSOM.CSSStartingStyleRule; |
|
CSSOM.CSSStartingStyleRule.prototype.type = 1002; |
|
//FIXME |
|
//CSSOM.CSSStartingStyleRule.prototype.insertRule = CSSStyleSheet.prototype.insertRule; |
|
//CSSOM.CSSStartingStyleRule.prototype.deleteRule = CSSStyleSheet.prototype.deleteRule; |
|
|
|
Object.defineProperty(CSSOM.CSSStartingStyleRule.prototype, "cssText", { |
|
get: function() { |
|
var cssTexts = []; |
|
for (var i=0, length=this.cssRules.length; i < length; i++) { |
|
cssTexts.push(this.cssRules[i].cssText); |
|
} |
|
return "@starting-style {" + cssTexts.join("") + "}"; |
|
} |
|
}); |
|
|
|
|
|
//.CommonJS |
|
exports.CSSStartingStyleRule = CSSOM.CSSStartingStyleRule; |
|
///CommonJS
|
|
|