Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81143 views
1
//.CommonJS
2
var CSSOM = {};
3
///CommonJS
4
5
6
/**
7
* @constructor
8
* @see http://dev.w3.org/csswg/cssom/#the-stylesheet-interface
9
*/
10
CSSOM.StyleSheet = function StyleSheet() {
11
this.parentStyleSheet = null;
12
};
13
14
15
//.CommonJS
16
exports.StyleSheet = CSSOM.StyleSheet;
17
///CommonJS
18
19