setup-kubectl/node_modules/jsdom/lib/jsdom/living/window/History.webidl
github-actions[bot] 7ad2aa66bb
Add node modules and new code for release (#39)
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
2022-01-05 11:26:06 -05:00

14 lines
482 B
Text

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);
};