summaryrefslogtreecommitdiff
path: root/javascript
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
parentb516854d0a3e8d658c65d18176f8b44f9af8c48e (diff)
downloadnetsurf-02fb81009ea365f98ac6861a109a809a1bffc42a.tar.gz
netsurf-02fb81009ea365f98ac6861a109a809a1bffc42a.tar.bz2
add automaticaly generated property setter and getters to HTMLParamhElement
Diffstat (limited to 'javascript')
-rw-r--r--javascript/duktape/HTMLParamElement.bnd23
-rw-r--r--javascript/duktape/netsurf.bnd2
2 files changed, 24 insertions, 1 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();
diff --git a/javascript/duktape/netsurf.bnd b/javascript/duktape/netsurf.bnd
index ddb98a7db..a4da3d454 100644
--- a/javascript/duktape/netsurf.bnd
+++ b/javascript/duktape/netsurf.bnd
@@ -93,6 +93,7 @@ struct dom_html_br_element;
#include "HTMLObjectElement.bnd"
#include "HTMLOptionElement.bnd"
#include "HTMLParagraphElement.bnd"
+#include "HTMLParamElement.bnd"
init HTMLUnknownElement(struct dom_html_element *html_unknown_element::html_element);
init HTMLDirectoryElement(struct dom_html_element *html_directory_element::html_element);
@@ -119,7 +120,6 @@ init HTMLTableCaptionElement(struct dom_html_element *html_table_caption_element
init HTMLTableElement(struct dom_html_element *html_table_element::html_element);
init HTMLMediaElement(struct dom_html_element *html_media_element::html_element);
init HTMLTrackElement(struct dom_html_element *html_track_element::html_element);
-init HTMLParamElement(struct dom_html_element *html_param_element::html_element);
init HTMLEmbedElement(struct dom_html_element *html_embed_element::html_element);
init HTMLSourceElement(struct dom_html_element *html_source_element::html_element);
init HTMLPictureElement(struct dom_html_element *html_picture_element::html_element);