StyleSheet.js 272 B

1234567891011121314151617
  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