Sha256: b74b448d8d0c3fcd6808b3170b8279e778131cc3ac0b1c7be433335ae0b3b33f

Contents?: true

Size: 1.01 KB

Versions: 52

Compression:

Stored size: 1.01 KB

Contents

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


/**
 * @constructor
 * @see http://dev.w3.org/csswg/cssom/#css-font-face-rule
 */
CSSOM.CSSFontFaceRule = function CSSFontFaceRule() {
	CSSOM.CSSRule.call(this);
	this.style = new CSSOM.CSSStyleDeclaration;
	this.style.parentRule = this;
};

CSSOM.CSSFontFaceRule.prototype = new CSSOM.CSSRule;
CSSOM.CSSFontFaceRule.prototype.constructor = CSSOM.CSSFontFaceRule;
CSSOM.CSSFontFaceRule.prototype.type = 5;
//FIXME
//CSSOM.CSSFontFaceRule.prototype.insertRule = CSSStyleSheet.prototype.insertRule;
//CSSOM.CSSFontFaceRule.prototype.deleteRule = CSSStyleSheet.prototype.deleteRule;

// http://www.opensource.apple.com/source/WebCore/WebCore-955.66.1/css/WebKitCSSFontFaceRule.cpp
CSSOM.CSSFontFaceRule.prototype.__defineGetter__("cssText", function() {
	return "@font-face {" + this.style.cssText + "}";
});


//.CommonJS
exports.CSSFontFaceRule = CSSOM.CSSFontFaceRule;
///CommonJS

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
stylus-source-0.41.2 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.41.1 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.41.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.40.3 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.40.2 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.40.1 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.40.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.39.4 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.39.3 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.39.2 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.39.1 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.39.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.38.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.37.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.36.1 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.36.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.35.1 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.35.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.34.1 vendor/node_modules/cssom/lib/CSSFontFaceRule.js
stylus-source-0.34.0 vendor/node_modules/cssom/lib/CSSFontFaceRule.js