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


{$ifdef TYPES}
type
  DOMCSSRuleListPtr = ^DOMCSSRuleList;
{$endif}

{$ifdef CLASSES}

type
  DOMCSSRuleList = objcclass external (DOMObject)
  public
    function length: cuint; message 'length';
    function item (index: cuint): DOMCSSRule; message 'item:';
  end;
{$endif}