From 2bea506f837c9a1e9c12c448eb206e067770819c Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 14 Nov 2012 02:11:01 +0000 Subject: add Node interface binding just to get the prototype --- javascript/jsapi/binding.h | 5 +++++ javascript/jsapi/node.bnd | 34 ++++++++++++++++++++++++++++++++++ javascript/jsapi/window.bnd | 5 +++++ 3 files changed, 44 insertions(+) create mode 100644 javascript/jsapi/node.bnd (limited to 'javascript') diff --git a/javascript/jsapi/binding.h b/javascript/jsapi/binding.h index c6a460ccc..6400217c8 100644 --- a/javascript/jsapi/binding.h +++ b/javascript/jsapi/binding.h @@ -143,4 +143,9 @@ JSObject *jsapi_new_Text(JSContext *cx, dom_text *node, struct html_content *htmlc); +JSObject *jsapi_InitClass_Node(JSContext *cx, JSObject *parent); +JSObject *jsapi_new_Node(JSContext *cx, + JSObject *prototype, + JSObject *parent); + #endif diff --git a/javascript/jsapi/node.bnd b/javascript/jsapi/node.bnd new file mode 100644 index 000000000..bcf0ef7b3 --- /dev/null +++ b/javascript/jsapi/node.bnd @@ -0,0 +1,34 @@ +/* Binding to generate Node interface + * + * Copyright 2012 Vincent Sanders + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * Released under the terms of the MIT License, + * http://www.opensource.org/licenses/mit-license + */ + +webidlfile "dom.idl"; + +hdrcomment "Copyright 2012 Vincent Sanders "; +hdrcomment "This file is part of NetSurf, http://www.netsurf-browser.org/"; +hdrcomment "Released under the terms of the MIT License,"; +hdrcomment " http://www.opensource.org/licenses/mit-license"; + +preamble %{ + +#include + +#include "utils/config.h" +#include "utils/log.h" + +#include "javascript/jsapi.h" +#include "javascript/jsapi/binding.h" + +%} + +binding node { + type js_libdom; /* the binding type */ + + interface Node; /* Web IDL interface to generate */ +} diff --git a/javascript/jsapi/window.bnd b/javascript/jsapi/window.bnd index 45541faec..767b94f1b 100644 --- a/javascript/jsapi/window.bnd +++ b/javascript/jsapi/window.bnd @@ -135,6 +135,11 @@ api init %{ return NULL; } + user_proto = jsapi_InitClass_Node(cx, prototype); + if (user_proto == NULL) { + return NULL; + } + %} api new %{ -- cgit v1.2.3