summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/DOMCSSStyleRule.inc
blob: 6fea97daf8d7c4c82ced75769593118c24080cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ Parsed from WebKit.framework DOMCSSStyleRule.h }


{$ifdef TYPES}
type
  DOMCSSStyleRulePtr = ^DOMCSSStyleRule;
{$endif}

{$ifdef CLASSES}

type
  DOMCSSStyleRule = objcclass external (DOMCSSRule)
  public
    procedure setSelectorText(newValue: NSString); message 'setSelectorText:';
    function selectorText: NSString; message 'selectorText';
    function style: DOMCSSStyleDeclaration; message 'style';
  end;
{$endif}