2025-10-09 16:48:46 +08:00

18 lines
364 B
Objective-C

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