mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00:00
updated bunch of file paths and changed the way posts are loaded
This commit is contained in:
39
node_modules/cssom/lib/CSSRule.js
generated
vendored
Normal file
39
node_modules/cssom/lib/CSSRule.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
//.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;
|
||||
this.parentStyleSheet = 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
|
||||
Reference in New Issue
Block a user