2012-03-17 10:50:10 +00:00
|
|
|
type
|
|
|
|
|
|
|
|
nsIDOMStorageObsolete = interface(nsISupports)
|
|
|
|
['{18013CF9-B104-49cf-9484-C2A7A845457E}']
|
|
|
|
function Getlength(): idlulong; safecall;
|
|
|
|
property length : idlulong read Getlength;
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure key(index: idlulong; result_: DOMString); safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
function getItem(akey: DOMString) : nsIDOMStorageItem; safecall;
|
|
|
|
procedure setItem(akey: DOMString; data: DOMString); safecall;
|
|
|
|
procedure removeItem(akey: DOMString); safecall;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|