blob: f940b4b3b038bf0f6fd6511bc09a203c5a22164c (
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 DOMRect.h }
{$ifdef TYPES}
type
DOMRectPtr = ^DOMRect;
{$endif}
{$ifdef CLASSES}
type
DOMRect = objcclass external (DOMObject)
public
function top: DOMCSSPrimitiveValue; message 'top';
function right: DOMCSSPrimitiveValue; message 'right';
function bottom: DOMCSSPrimitiveValue; message 'bottom';
function left: DOMCSSPrimitiveValue; message 'left';
end;
{$endif}
|