summaryrefslogtreecommitdiff
path: root/javascript/duktape/HTMLBodyElement.bnd
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-10 11:08:48 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-10 11:08:48 +0100
commit0636ee0f209af1bbc080c87058c7e1f8191e8b15 (patch)
tree8c2461e8ea355ad18fa9c27d727dadc685f00b0c /javascript/duktape/HTMLBodyElement.bnd
parent9f925da516cdd8a566e4d57d6f80f9614b852774 (diff)
downloadnetsurf-0636ee0f209af1bbc080c87058c7e1f8191e8b15.tar.gz
netsurf-0636ee0f209af1bbc080c87058c7e1f8191e8b15.tar.bz2
Add automaticaly generated property setter and getters to HTMLBodyElement
Diffstat (limited to 'javascript/duktape/HTMLBodyElement.bnd')
-rw-r--r--javascript/duktape/HTMLBodyElement.bnd24
1 files changed, 24 insertions, 0 deletions
diff --git a/javascript/duktape/HTMLBodyElement.bnd b/javascript/duktape/HTMLBodyElement.bnd
new file mode 100644
index 000000000..a283f897c
--- /dev/null
+++ b/javascript/duktape/HTMLBodyElement.bnd
@@ -0,0 +1,24 @@
+/* HTML body 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 HTMLBodyElement(struct dom_html_element *html_body_element::html_element);
+
+getter HTMLBodyElement::aLink();
+setter HTMLBodyElement::aLink();
+getter HTMLBodyElement::background();
+setter HTMLBodyElement::background();
+getter HTMLBodyElement::bgColor();
+setter HTMLBodyElement::bgColor();
+getter HTMLBodyElement::link();
+setter HTMLBodyElement::link();
+getter HTMLBodyElement::text();
+setter HTMLBodyElement::text();
+getter HTMLBodyElement::vLink();
+setter HTMLBodyElement::vLink();