Sha256: ca8e77926a88982bc5225071fbf3afbc512431da165471088315096230851c9f

Contents?: true

Size: 1.11 KB

Versions: 25

Compression:

Stored size: 1.11 KB

Contents

//.CommonJS
var CSSOM = {
	CSSRule: require("./CSSRule").CSSRule,
	MediaList: require("./MediaList").MediaList
};
///CommonJS


/**
 * @constructor
 * @see http://dev.w3.org/csswg/cssom/#cssmediarule
 * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSMediaRule
 */
CSSOM.CSSMediaRule = function CSSMediaRule() {
	this.media = new CSSOM.MediaList;
	this.cssRules = [];
};

CSSOM.CSSMediaRule.prototype = new CSSOM.CSSRule;
CSSOM.CSSMediaRule.prototype.constructor = CSSOM.CSSMediaRule;
CSSOM.CSSMediaRule.prototype.type = 4;
//FIXME
//CSSOM.CSSMediaRule.prototype.insertRule = CSSStyleSheet.prototype.insertRule;
//CSSOM.CSSMediaRule.prototype.deleteRule = CSSStyleSheet.prototype.deleteRule;

// http://opensource.apple.com/source/WebCore/WebCore-658.28/css/CSSMediaRule.cpp
CSSOM.CSSMediaRule.prototype.__defineGetter__("cssText", function() {
	var cssTexts = [];
	for (var i=0, length=this.cssRules.length; i < length; i++) {
		cssTexts.push(this.cssRules[i].cssText);
	}
	return "@media " + this.media.mediaText + " {" + cssTexts.join("") + "}"
});


//.CommonJS
exports.CSSMediaRule = CSSOM.CSSMediaRule;
///CommonJS

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
stylus-source-0.23.0 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.22.6 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.22.5 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.22.4 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.22.3 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.22.2 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.22.1 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.22.0 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.21.2 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.21.1 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.21.0 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.20.1 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.20.0 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.19.8 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.19.7 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.19.6 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.19.5 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.19.4 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.19.3 vendor/node_modules/cssom/lib/CSSMediaRule.js
stylus-source-0.19.2 vendor/node_modules/cssom/lib/CSSMediaRule.js