forked from SVGKit/SVGKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyleSheet.h
More file actions
29 lines (23 loc) · 873 Bytes
/
Copy pathStyleSheet.h
File metadata and controls
29 lines (23 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
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,retain) NSString* type;
@property(nonatomic) BOOL disabled;
@property(nonatomic,retain) Node* ownerNode;
@property(nonatomic,retain) StyleSheet* parentStyleSheet;
@property(nonatomic,retain) NSString* href;
@property(nonatomic,retain) NSString* title;
@property(nonatomic,retain) MediaList* media;
@end