summaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-13 23:20:50 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-13 23:20:50 +0100
commitd57dec24548d7d8b58c54d0647b6d1339a09cb88 (patch)
treef59b1019548c3a5094edc9bc65865d25b74fed44 /javascript
parent5fdf040e90c9adebc6ecc4ffe7c0ac0734853863 (diff)
downloadnetsurf-d57dec24548d7d8b58c54d0647b6d1339a09cb88.tar.gz
netsurf-d57dec24548d7d8b58c54d0647b6d1339a09cb88.tar.bz2
add automaticaly generated property setter and getters to HTMLMapElement
Diffstat (limited to 'javascript')
-rw-r--r--javascript/duktape/HTMLMapElement.bnd14
-rw-r--r--javascript/duktape/netsurf.bnd2
2 files changed, 15 insertions, 1 deletions
diff --git a/javascript/duktape/HTMLMapElement.bnd b/javascript/duktape/HTMLMapElement.bnd
new file mode 100644
index 000000000..0603f6f81
--- /dev/null
+++ b/javascript/duktape/HTMLMapElement.bnd
@@ -0,0 +1,14 @@
+/* HTML map 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 HTMLMapElement(struct dom_html_element *html_map_element::html_element);
+
+getter HTMLMapElement::name();
+setter HTMLMapElement::name();
diff --git a/javascript/duktape/netsurf.bnd b/javascript/duktape/netsurf.bnd
index 771fa5ecb..2ecacf549 100644
--- a/javascript/duktape/netsurf.bnd
+++ b/javascript/duktape/netsurf.bnd
@@ -86,6 +86,7 @@ struct dom_html_br_element;
#include "HTMLLegendElement.bnd"
#include "HTMLLIElement.bnd"
#include "HTMLLinkElement.bnd"
+#include "HTMLMapElement.bnd"
init HTMLUnknownElement(struct dom_html_element *html_unknown_element::html_element);
init HTMLDirectoryElement(struct dom_html_element *html_directory_element::html_element);
@@ -113,7 +114,6 @@ init HTMLTableSectionElement(struct dom_html_element *html_table_section_element
init HTMLTableColElement(struct dom_html_element *html_table_col_element::html_element);
init HTMLTableCaptionElement(struct dom_html_element *html_table_caption_element::html_element);
init HTMLTableElement(struct dom_html_element *html_table_element::html_element);
-init HTMLMapElement(struct dom_html_element *html_map_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);