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

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