DocumentStyle.h 364 B

1234567891011121314151617
  1. /**
  2. http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-DocumentStyle
  3. interface DocumentStyle {
  4. readonly attribute StyleSheetList styleSheets;
  5. */
  6. #import <Foundation/Foundation.h>
  7. #import "StyleSheetList.h"
  8. @protocol DocumentStyle <NSObject>
  9. @property(nonatomic,retain) StyleSheetList* styleSheets;
  10. @end