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.bnd87
1 files changed, 0 insertions, 87 deletions
diff --git a/javascript/duktape/Navigator.bnd b/javascript/duktape/Navigator.bnd
deleted file mode 100644
index b18ca8e83..000000000
--- a/javascript/duktape/Navigator.bnd
+++ /dev/null
@@ -1,87 +0,0 @@
-/* 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
- */
-
-prologue Navigator()
-%{
-#include "utils/useragent.h"
-%}
-
-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;
-%}
-
-getter Navigator::userAgent()
-%{
- duk_push_string(ctx, user_agent_string());
- return 1;
-%}