Files
Mozilla/mozilla/dom/public/idl/base/History.idl
vidur%netscape.com 17f4dc0814 Corrected signature of History::Go()
git-svn-id: svn://10.0.0.236/trunk@48496 18797224-902f-48f8-a5cc-f745e15eee43
1999-09-21 05:11:55 +00:00

14 lines
359 B
Plaintext

interface History {
/* IID: { 0x896d1d20, 0xb4c4, 0x11d2, \
{ 0xbd, 0x93, 0x00, 0x80, 0x5f, 0x8a, 0xe3, 0xf4 } } */
readonly attribute int length;
readonly attribute wstring current;
readonly attribute wstring previous;
readonly attribute wstring next;
void back();
void forward();
void go(/* ... */);
};