summaryrefslogtreecommitdiff
path: root/javascript/duktape/HTMLElement.bnd
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-12 09:10:03 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-12 09:10:03 +0100
commit0d4942d42c7b96a5b8c672d0c7075fda534f1262 (patch)
treebc737d0879c1e270d638e92ed484c8f075a5f9c8 /javascript/duktape/HTMLElement.bnd
parent9443f201feab3b5db858f9f4990480983812006f (diff)
downloadnetsurf-0d4942d42c7b96a5b8c672d0c7075fda534f1262.tar.gz
netsurf-0d4942d42c7b96a5b8c672d0c7075fda534f1262.tar.bz2
add automaticaly generated property setter and getters to HTMLElement
Diffstat (limited to 'javascript/duktape/HTMLElement.bnd')
-rw-r--r--javascript/duktape/HTMLElement.bnd20
1 files changed, 20 insertions, 0 deletions
diff --git a/javascript/duktape/HTMLElement.bnd b/javascript/duktape/HTMLElement.bnd
new file mode 100644
index 000000000..7a3424913
--- /dev/null
+++ b/javascript/duktape/HTMLElement.bnd
@@ -0,0 +1,20 @@
+/* HTML element binding 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
+ */
+
+init HTMLHtmlElement(struct dom_html_element *html_html_element::html_element);
+
+getter HTMLElement::dir();
+setter HTMLElement::dir();
+
+getter HTMLElement::lang();
+setter HTMLElement::lang();
+
+getter HTMLElement::title();
+setter HTMLElement::title();