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


{$ifdef TYPES}
type
  DOMStyleSheetListPtr = ^DOMStyleSheetList;
{$endif}

{$ifdef CLASSES}

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