summaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-14 12:51:35 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-14 12:51:35 +0100
commit4f843d3b6f09fe6639498504263515fbd6ea3c5f (patch)
treeae922efbfb5df6079bb8e5adee5146cc51c343a4 /javascript
parent02fb81009ea365f98ac6861a109a809a1bffc42a (diff)
downloadnetsurf-4f843d3b6f09fe6639498504263515fbd6ea3c5f.tar.gz
netsurf-4f843d3b6f09fe6639498504263515fbd6ea3c5f.tar.bz2
add automaticaly generated property setter and getters to HTMLQuoteElement
Diffstat (limited to 'javascript')
-rw-r--r--javascript/duktape/HTMLQuoteElement.bnd14
-rw-r--r--javascript/duktape/netsurf.bnd2
2 files changed, 15 insertions, 1 deletions
diff --git a/javascript/duktape/HTMLQuoteElement.bnd b/javascript/duktape/HTMLQuoteElement.bnd
new file mode 100644
index 000000000..9e62f5d78
--- /dev/null
+++ b/javascript/duktape/HTMLQuoteElement.bnd
@@ -0,0 +1,14 @@
+/* HTML quote 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 HTMLQuoteElement(struct dom_html_element *html_quote_element::html_element);
+
+getter HTMLQuoteElement::cite();
+setter HTMLQuoteElement::cite();
diff --git a/javascript/duktape/netsurf.bnd b/javascript/duktape/netsurf.bnd
index a4da3d454..15784369b 100644
--- a/javascript/duktape/netsurf.bnd
+++ b/javascript/duktape/netsurf.bnd
@@ -94,6 +94,7 @@ struct dom_html_br_element;
#include "HTMLOptionElement.bnd"
#include "HTMLParagraphElement.bnd"
#include "HTMLParamElement.bnd"
+#include "HTMLQuoteElement.bnd"
init HTMLUnknownElement(struct dom_html_element *html_unknown_element::html_element);
init HTMLDirectoryElement(struct dom_html_element *html_directory_element::html_element);
@@ -131,7 +132,6 @@ init HTMLDivElement(struct dom_html_element *html_div_element::html_element);
init HTMLDListElement(struct dom_html_element *html_d_list_element::html_element);
init HTMLUListElement(struct dom_html_element *html_u_list_element::html_element);
init HTMLOListElement(struct dom_html_element *html_o_list_element::html_element);
-init HTMLQuoteElement(struct dom_html_element *html_quote_element::html_element);
init HTMLPreElement(struct dom_html_element *html_pre_element::html_element);
init HTMLStyleElement(struct dom_html_element *html_style_element::html_element);
init HTMLTitleElement(struct dom_html_element *html_title_element::html_element);