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.
18 lines
272 B
18 lines
272 B
1 year ago
|
//.CommonJS
|
||
|
var CSSOM = {};
|
||
|
///CommonJS
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @see http://dev.w3.org/csswg/cssom/#the-stylesheet-interface
|
||
|
*/
|
||
|
CSSOM.StyleSheet = function StyleSheet() {
|
||
|
this.parentStyleSheet = null;
|
||
|
};
|
||
|
|
||
|
|
||
|
//.CommonJS
|
||
|
exports.StyleSheet = CSSOM.StyleSheet;
|
||
|
///CommonJS
|