blob: 82268ef4e9af1bc7a3ff1221591c8859437a62dc (
plain)
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
30
31
32
33
34
35
|
{ Parsed from WebKit.framework DOMCSSRule.h }
{$ifdef TYPES}
type
DOMCSSRulePtr = ^DOMCSSRule;
{$endif}
{$ifdef TYPES}
const
DOM_UNKNOWN_RULE = 0;
DOM_STYLE_RULE = 1;
DOM_CHARSET_RULE = 2;
DOM_IMPORT_RULE = 3;
DOM_MEDIA_RULE = 4;
DOM_FONT_FACE_RULE = 5;
DOM_PAGE_RULE = 6;
DOM_WEBKIT_KEYFRAMES_RULE = 7;
DOM_WEBKIT_KEYFRAME_RULE = 8;
DOM_WEBKIT_REGION_RULE = 16;
{$endif}
{$ifdef CLASSES}
type
DOMCSSRule = objcclass external (DOMObject)
public
function type_: cushort; message 'type';
procedure setCssText(newValue: NSString); message 'setCssText:';
function cssText: NSString; message 'cssText';
function parentStyleSheet: DOMCSSStyleSheet; message 'parentStyleSheet';
function parentRule: DOMCSSRule; message 'parentRule';
end;
{$endif}
|