智能照明系统APP-本地串口
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.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/75/75c8efa79a102e9538eabfff4b0...

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