summaryrefslogtreecommitdiff
path: root/javascript/duktape/HTMLParamElement.bnd
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-14 09:21:26 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-14 09:21:26 +0100
commit02fb81009ea365f98ac6861a109a809a1bffc42a (patch)
tree2a6e2024b37b4ab71252832473ed74124cbc7f06 /javascript/duktape/HTMLParamElement.bnd
parentb516854d0a3e8d658c65d18176f8b44f9af8c48e (diff)
downloadnetsurf-02fb81009ea365f98ac6861a109a809a1bffc42a.tar.gz
netsurf-02fb81009ea365f98ac6861a109a809a1bffc42a.tar.bz2
add automaticaly generated property setter and getters to HTMLParamhElement
Diffstat (limited to 'javascript/duktape/HTMLParamElement.bnd')
-rw-r--r--javascript/duktape/HTMLParamElement.bnd23
1 files changed, 23 insertions, 0 deletions
diff --git a/javascript/duktape/HTMLParamElement.bnd b/javascript/duktape/HTMLParamElement.bnd
new file mode 100644
index 000000000..8fbe6fca6
--- /dev/null
+++ b/javascript/duktape/HTMLParamElement.bnd
@@ -0,0 +1,23 @@
+/* HTML param 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 HTMLParamElement(struct dom_html_element *html_param_element::html_element);
+
+getter HTMLParamElement::name();
+setter HTMLParamElement::name();
+
+getter HTMLParamElement::type();
+setter HTMLParamElement::type();
+
+getter HTMLParamElement::value();
+setter HTMLParamElement::value();
+
+getter HTMLParamElement::valueType();
+setter HTMLParamElement::valueType();