blob: a049d61e4193b60e032ce3b7bff178765655074e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{ Parsed from WebKit.framework DOMCSSValue.h }
{$ifdef TYPES}
type
DOMCSSValuePtr = ^DOMCSSValue;
{$endif}
{$ifdef TYPES}
const
DOM_CSS_INHERIT = 0;
DOM_CSS_PRIMITIVE_VALUE = 1;
DOM_CSS_VALUE_LIST = 2;
DOM_CSS_CUSTOM = 3;
{$endif}
{$ifdef CLASSES}
type
DOMCSSValue = objcclass external (DOMObject)
public
procedure setCssText(newValue: NSString); message 'setCssText:';
function cssText: NSString; message 'cssText';
function cssValueType: cushort; message 'cssValueType';
end;
{$endif}
|