
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2364 8e941d3f-bd1b-0410-a28a-d453659cc2b4
16 lines
540 B
PHP
16 lines
540 B
PHP
type
|
|
|
|
nsIDOMDOMTokenList = interface(nsISupports)
|
|
['{c6f1e160-eeeb-404a-98b0-6f1246520b6e}']
|
|
function Getlength(): idlulong; safecall;
|
|
property length : idlulong read Getlength;
|
|
procedure item(index: idlulong; result_: DOMString); safecall;
|
|
function contains(token: DOMString) : longbool; safecall;
|
|
procedure add(token: DOMString); safecall;
|
|
procedure remove(token: DOMString); safecall;
|
|
function toggle(token: DOMString) : longbool; safecall;
|
|
procedure toString( result_: DOMString); safecall;
|
|
|
|
end;
|
|
|