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


{$ifdef TYPES}
type
  DOMHTMLCollectionPtr = ^DOMHTMLCollection;
{$endif}

{$ifdef CLASSES}

type
  DOMHTMLCollection = objcclass external (DOMObject)
  public
    function length: cuint; message 'length';
    function item (index: cuint): DOMNode; message 'item:';
    function namedItem (name: NSString): DOMNode; message 'namedItem:';
    function tags (name: NSString): DOMNodeList; message 'tags:'; { available in 10_6 }
  end;
{$endif}