summaryrefslogtreecommitdiff
path: root/javascript/jsapi
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-07-31 14:48:53 +0100
committerVincent Sanders <vince@netsurf-browser.org>2012-07-31 14:48:53 +0100
commitc0aaf31f5a9a65808d8b7af92434608135ccc752 (patch)
treedda89f46d302b32c116c8196d35da7f88dc6ce33 /javascript/jsapi
parentd763e57d30dc8c68309c5b35f556531cb8346da5 (diff)
downloadnetsurf-c0aaf31f5a9a65808d8b7af92434608135ccc752.tar.gz
netsurf-c0aaf31f5a9a65808d8b7af92434608135ccc752.tar.bz2
fix global handling
Diffstat (limited to 'javascript/jsapi')
-rw-r--r--javascript/jsapi/document.c4
-rw-r--r--javascript/jsapi/window.c12
2 files changed, 14 insertions, 2 deletions
diff --git a/javascript/jsapi/document.c b/javascript/jsapi/document.c
index dfad551d6..bb5019c4b 100644
--- a/javascript/jsapi/document.c
+++ b/javascript/jsapi/document.c
@@ -92,8 +92,10 @@ JSObject *jsapi_new_document(JSContext *cx, JSObject *parent, void *doc_priv)
LOG(("setting content to %p",doc_priv));
/* private pointer to browsing context */
- if (!JS_SetPrivate(cx, doc, doc_priv))
+ if (JS_SetPrivate(cx, doc, doc_priv) != JS_TRUE) {
+ LOG(("failed to set content"));
return NULL;
+ }
return doc;
}
diff --git a/javascript/jsapi/window.c b/javascript/jsapi/window.c
index 06e6cdfe8..0b7673be3 100644
--- a/javascript/jsapi/window.c
+++ b/javascript/jsapi/window.c
@@ -299,8 +299,18 @@ JSObject * jsapi_new_window(JSContext *cx, JSObject *parent, void *win_priv)
return NULL;
}
+ /** @todo reconsider global object handling. future
+ * editions of spidermonkey appear to be removing the
+ * idea of a global so we probably need to handle
+ * global object references internally
+ */
+
+ /* set the contexts global */
+ JS_SetGlobalObject(cx, window);
+
/* Populate the global object with the standard globals, like
- Object and Array. */
+ * Object and Array.
+ */
if (!JS_InitStandardClasses(cx, window)) {
return NULL;
}