summaryrefslogtreecommitdiff
path: root/javascript/duktape/Navigator.bnd
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/duktape/Navigator.bnd')
-rw-r--r--javascript/duktape/Navigator.bnd76
1 files changed, 76 insertions, 0 deletions
diff --git a/javascript/duktape/Navigator.bnd b/javascript/duktape/Navigator.bnd
new file mode 100644
index 000000000..577ac29f0
--- /dev/null
+++ b/javascript/duktape/Navigator.bnd
@@ -0,0 +1,76 @@
+/* Navigator binding for browser using duktape and libdom
+ *
+ * Copyright 2015 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
+ */
+
+method Navigator::taintEnabled()
+%{
+ duk_push_boolean(ctx, false);
+ return 1;
+%}
+
+getter Navigator::appCodeName()
+%{
+ duk_push_string(ctx, "Mozilla");
+ return 1;
+%}
+
+getter Navigator::appName()
+%{
+ duk_push_string(ctx, "Netscape");
+ return 1;
+%}
+
+getter Navigator::appVersion()
+%{
+ duk_push_string(ctx, "3.4");
+ return 1;
+%}
+
+getter Navigator::platform()
+%{
+ duk_push_string(ctx, NULL);
+ return 1;
+%}
+
+getter Navigator::product()
+%{
+ duk_push_string(ctx, "Gecko");
+ return 1;
+%}
+
+getter Navigator::productSub()
+%{
+ duk_push_string(ctx, "20100101");
+ return 1;
+%}
+
+getter Navigator::vendor()
+%{
+ duk_push_string(ctx, NULL);
+ return 1;
+%}
+
+getter Navigator::vendorSub()
+%{
+ duk_push_string(ctx, NULL);
+ return 1;
+%}
+
+getter Navigator::cookieEnabled()
+%{
+ duk_push_boolean(ctx, false);
+ return 1;
+%}
+
+/* indicate there is no plugin for java installed */
+getter Navigator::javaEnabled()
+%{
+ duk_push_boolean(ctx, false);
+ return 1;
+%}