2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
#ifndef EL__ECMASCRIPT_SPIDERMONKEY_LOCATION_H
|
|
|
|
#define EL__ECMASCRIPT_SPIDERMONKEY_LOCATION_H
|
|
|
|
|
|
|
|
#include "ecmascript/spidermonkey/util.h"
|
|
|
|
|
|
|
|
struct document_view;
|
|
|
|
|
2019-02-10 15:00:37 -05:00
|
|
|
extern JSClass history_class;
|
2008-06-16 17:25:59 -04:00
|
|
|
extern const spidermonkeyFunctionSpec history_funcs[];
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2019-02-10 15:00:37 -05:00
|
|
|
extern JSClass location_class;
|
2008-06-16 17:25:59 -04:00
|
|
|
extern const spidermonkeyFunctionSpec location_funcs[];
|
2019-02-10 15:00:37 -05:00
|
|
|
extern JSPropertySpec location_props[];
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2021-01-02 10:20:27 -05:00
|
|
|
void location_goto(struct document_view *doc_view, char *url);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
#endif
|