summaryrefslogtreecommitdiff
path: root/javascript/jsapi/console.bnd
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/jsapi/console.bnd')
-rw-r--r--javascript/jsapi/console.bnd47
1 files changed, 0 insertions, 47 deletions
diff --git a/javascript/jsapi/console.bnd b/javascript/jsapi/console.bnd
deleted file mode 100644
index 8303eb06c..000000000
--- a/javascript/jsapi/console.bnd
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Binding to generate Console interface
- *
- * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
- *
- * 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 "console.idl";
-
-hdrcomment "Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>";
-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 "utils/config.h"
-#include "utils/log.h"
-#include "javascript/jsapi.h"
-
-#include "console.h"
-
-%}
-
-binding navigator {
- type js_libdom; /* the binding type */
-
- interface Console; /* Web IDL interface to generate */
-
-}
-
-operation log %{
- unsigned int argloop;
- JSString *jsstr;
- unsigned long jsstrlen;
- char *txt;
-
- for (argloop = 0; argloop < argc; argloop++) {
- jsstr = JS_ValueToString(cx, argv[argloop]);
-
- JSString_to_char(jsstr, txt, jsstrlen);
- LOG("%s", txt);
- }
-%}