30 lines
873 B
Objective-C
30 lines
873 B
Objective-C
/**
|
|
http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet
|
|
|
|
interface StyleSheet {
|
|
readonly attribute DOMString type;
|
|
attribute boolean disabled;
|
|
readonly attribute Node ownerNode;
|
|
readonly attribute StyleSheet parentStyleSheet;
|
|
readonly attribute DOMString href;
|
|
readonly attribute DOMString title;
|
|
readonly attribute MediaList media;
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class Node;
|
|
@class MediaList;
|
|
|
|
@interface StyleSheet : NSObject
|
|
|
|
@property(nonatomic,strong) NSString* type;
|
|
@property(nonatomic) BOOL disabled;
|
|
@property(nonatomic,strong) Node* ownerNode;
|
|
@property(nonatomic,strong) StyleSheet* parentStyleSheet;
|
|
@property(nonatomic,strong) NSString* href;
|
|
@property(nonatomic,strong) NSString* title;
|
|
@property(nonatomic,strong) MediaList* media;
|
|
|
|
@end
|