mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
15 lines
399 B
Plaintext
15 lines
399 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(/* ... */);
|
|
wstring item(in unsigned long index);
|
|
};
|