You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
482 B
14 lines
482 B
enum ScrollRestoration { "auto", "manual" };
|
|
|
|
[Exposed=Window]
|
|
interface History {
|
|
// readonly attribute unsigned long index;
|
|
readonly attribute unsigned long length;
|
|
// attribute ScrollRestoration scrollRestoration;
|
|
readonly attribute any state;
|
|
void go(optional long delta = 0);
|
|
void back();
|
|
void forward();
|
|
void pushState(any data, DOMString title, optional USVString? url = null);
|
|
void replaceState(any data, DOMString title, optional USVString? url = null);
|
|
};
|
|
|