StyleSheet.h 873 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet
  3. interface StyleSheet {
  4. readonly attribute DOMString type;
  5. attribute boolean disabled;
  6. readonly attribute Node ownerNode;
  7. readonly attribute StyleSheet parentStyleSheet;
  8. readonly attribute DOMString href;
  9. readonly attribute DOMString title;
  10. readonly attribute MediaList media;
  11. */
  12. #import <Foundation/Foundation.h>
  13. @class Node;
  14. @class MediaList;
  15. @interface StyleSheet : NSObject
  16. @property(nonatomic,strong) NSString* type;
  17. @property(nonatomic) BOOL disabled;
  18. @property(nonatomic,strong) Node* ownerNode;
  19. @property(nonatomic,strong) StyleSheet* parentStyleSheet;
  20. @property(nonatomic,strong) NSString* href;
  21. @property(nonatomic,strong) NSString* title;
  22. @property(nonatomic,strong) MediaList* media;
  23. @end