summaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-24 19:39:07 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-24 19:39:59 +0100
commitdc0729150c2fd4ed4ad594ea5240d69d8ab65a3c (patch)
treec86b357eb890787ab1147ade45b8709aa1efcbd0 /javascript
parent37c715c5224b5e86925e6b0b9270c95dd45d4b19 (diff)
downloadnetsurf-dc0729150c2fd4ed4ad594ea5240d69d8ab65a3c.tar.gz
netsurf-dc0729150c2fd4ed4ad594ea5240d69d8ab65a3c.tar.bz2
add automaticaly generated property setter and getters to HTMLOListElement
Diffstat (limited to 'javascript')
-rw-r--r--javascript/duktape/HTMLOListElement.bnd18
-rw-r--r--javascript/duktape/netsurf.bnd2
2 files changed, 19 insertions, 1 deletions
diff --git a/javascript/duktape/HTMLOListElement.bnd b/javascript/duktape/HTMLOListElement.bnd
new file mode 100644
index 000000000..8c12712a9
--- /dev/null
+++ b/javascript/duktape/HTMLOListElement.bnd
@@ -0,0 +1,18 @@
+/* HTML ol 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 HTMLOListElement(struct dom_html_element *html_o_list_element::html_element);
+
+getter HTMLOListElement::compact();
+setter HTMLOListElement::compact();
+getter HTMLOListElement::start();
+setter HTMLOListElement::start();
+getter HTMLOListElement::type();
+setter HTMLOListElement::type();
diff --git a/javascript/duktape/netsurf.bnd b/javascript/duktape/netsurf.bnd
index d4e7ca6d0..2747ddf8b 100644
--- a/javascript/duktape/netsurf.bnd
+++ b/javascript/duktape/netsurf.bnd
@@ -92,6 +92,7 @@ struct dom_html_br_element;
#include "HTMLMetaElement.bnd"
#include "HTMLObjectElement.bnd"
#include "HTMLOptionElement.bnd"
+#include "HTMLOListElement.bnd"
#include "HTMLParagraphElement.bnd"
#include "HTMLParamElement.bnd"
#include "HTMLQuoteElement.bnd"
@@ -133,7 +134,6 @@ init HTMLDataElement(struct dom_html_element *html_data_element::html_element);
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 HTMLPreElement(struct dom_html_element *html_pre_element::html_element);
init HTMLHeadElement(struct dom_html_element *html_head_element::html_element);