blob: a1c3463a56761e96ada774492fac791aa1c4e3c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ Parsed from WebKit.framework DOMCSSPageRule.h }
{$ifdef TYPES}
type
DOMCSSPageRulePtr = ^DOMCSSPageRule;
{$endif}
{$ifdef CLASSES}
type
DOMCSSPageRule = objcclass external (DOMCSSRule)
public
procedure setSelectorText(newValue: NSString); message 'setSelectorText:';
function selectorText: NSString; message 'selectorText';
function style: DOMCSSStyleDeclaration; message 'style';
end;
{$endif}
|