summaryrefslogtreecommitdiff
path: root/javascript/jsapi/window.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2012-07-01 10:10:00 +0100
committerVincent Sanders <vince@kyllikki.org>2012-07-02 22:48:41 +0100
commit274a76d97a878ef66155a215e1d16c33998f5597 (patch)
treecd69338034ad4d8694bdd79e723c859e60f62662 /javascript/jsapi/window.c
parent44f448b7c0f6ea5210cc097f3fa6652207df2a12 (diff)
downloadnetsurf-274a76d97a878ef66155a215e1d16c33998f5597.tar.gz
netsurf-274a76d97a878ef66155a215e1d16c33998f5597.tar.bz2
Add initial navigator object creation.
Basic navigator object outline ready to add methods to. The navigator object contains all the information about the browser Signed-Off-By: Vincent Sanders <vince@netsurf-browser.org>
Diffstat (limited to 'javascript/jsapi/window.c')
-rw-r--r--javascript/jsapi/window.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/javascript/jsapi/window.c b/javascript/jsapi/window.c
index f1c845152..06e6cdfe8 100644
--- a/javascript/jsapi/window.c
+++ b/javascript/jsapi/window.c
@@ -202,8 +202,40 @@ static JSBool JSAPI_NATIVE(prompt, JSContext *cx, uintN argc, jsval *vp)
return JS_TRUE;
}
+static JSBool JSAPI_NATIVE(close, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
+static JSBool JSAPI_NATIVE(stop, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
+static JSBool JSAPI_NATIVE(focus, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
+static JSBool JSAPI_NATIVE(blur, JSContext *cx, uintN argc, jsval *vp)
+{
+ JSAPI_SET_RVAL(cx, vp, JSVAL_VOID);
+
+ return JS_TRUE;
+}
+
static JSFunctionSpec jsfunctions_window[] =
{
+ JSAPI_FS(close, 0, 0),
+ JSAPI_FS(stop, 0, 0),
+ JSAPI_FS(focus, 0, 0),
+ JSAPI_FS(blur, 0, 0),
JSAPI_FS(alert, 1, 0),
JSAPI_FS(confirm, 1, 0),
JSAPI_FS(prompt, 1, 0),