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