Sha256: 1787c639d9c94b2724b35b654a29a0789e80b1e52a11a4896a74db00153e0e9c

Contents?: true

Size: 803 Bytes

Versions: 25

Compression:

Stored size: 803 Bytes

Contents

//.CommonJS
var CSSOM = {};
///CommonJS


/**
 * @constructor
 * @see http://dev.w3.org/csswg/cssom/#the-cssrule-interface
 * @see http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRule
 */
CSSOM.CSSRule = function CSSRule() {
	this.parentRule = null;
};

CSSOM.CSSRule.STYLE_RULE = 1;
CSSOM.CSSRule.IMPORT_RULE = 3;
CSSOM.CSSRule.MEDIA_RULE = 4;
CSSOM.CSSRule.FONT_FACE_RULE = 5;
CSSOM.CSSRule.PAGE_RULE = 6;
CSSOM.CSSRule.WEBKIT_KEYFRAMES_RULE = 8;
CSSOM.CSSRule.WEBKIT_KEYFRAME_RULE = 9;

// Obsolete in CSSOM http://dev.w3.org/csswg/cssom/
//CSSOM.CSSRule.UNKNOWN_RULE = 0;
//CSSOM.CSSRule.CHARSET_RULE = 2;

// Never implemented
//CSSOM.CSSRule.VARIABLES_RULE = 7;

CSSOM.CSSRule.prototype = {
	constructor: CSSOM.CSSRule
	//FIXME
};


//.CommonJS
exports.CSSRule = CSSOM.CSSRule;
///CommonJS

Version data entries

25 entries across 25 versions & 1 rubygems

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