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.
17 lines
272 B
17 lines
272 B
//.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
|
|
|