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


{$ifdef TYPES}
type
  DOMCSSValueListPtr = ^DOMCSSValueList;
{$endif}

{$ifdef CLASSES}

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