Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
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
889 B
37 lines
889 B
1 year ago
|
//.CommonJS
|
||
|
var CSSOM = {
|
||
|
CSSRule: require("./CSSRule").CSSRule,
|
||
|
};
|
||
|
///CommonJS
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @see https://drafts.csswg.org/css-conditional-3/#the-csssupportsrule-interface
|
||
|
*/
|
||
|
CSSOM.CSSSupportsRule = function CSSSupportsRule() {
|
||
|
CSSOM.CSSRule.call(this);
|
||
|
this.conditionText = '';
|
||
|
this.cssRules = [];
|
||
|
};
|
||
|
|
||
|
CSSOM.CSSSupportsRule.prototype = new CSSOM.CSSRule();
|
||
|
CSSOM.CSSSupportsRule.prototype.constructor = CSSOM.CSSSupportsRule;
|
||
|
CSSOM.CSSSupportsRule.prototype.type = 12;
|
||
|
|
||
|
Object.defineProperty(CSSOM.CSSSupportsRule.prototype, "cssText", {
|
||
|
get: function() {
|
||
|
var cssTexts = [];
|
||
|
|
||
|
for (var i = 0, length = this.cssRules.length; i < length; i++) {
|
||
|
cssTexts.push(this.cssRules[i].cssText);
|
||
|
}
|
||
|
|
||
|
return "@supports " + this.conditionText + " {" + cssTexts.join("") + "}";
|
||
|
}
|
||
|
});
|
||
|
|
||
|
//.CommonJS
|
||
|
exports.CSSSupportsRule = CSSOM.CSSSupportsRule;
|
||
|
///CommonJS
|