summaryrefslogtreecommitdiff
path: root/javascript/duktape
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-13 09:22:46 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-13 09:22:46 +0100
commitd01cecdf7f341aeb4920437c0e644059c4b7090b (patch)
treef88366fdc849d87a660368eda7f5f1fb657cf73f /javascript/duktape
parentcb178413efc7d8c6cbc595884e88c5b9d82898a4 (diff)
downloadnetsurf-d01cecdf7f341aeb4920437c0e644059c4b7090b.tar.gz
netsurf-d01cecdf7f341aeb4920437c0e644059c4b7090b.tar.bz2
add automaticaly generated property setter and getters to HTMLFrameElement
Diffstat (limited to 'javascript/duktape')
-rw-r--r--javascript/duktape/HTMLFrameElement.bnd35
-rw-r--r--javascript/duktape/netsurf.bnd2
2 files changed, 36 insertions, 1 deletions
diff --git a/javascript/duktape/HTMLFrameElement.bnd b/javascript/duktape/HTMLFrameElement.bnd
new file mode 100644
index 000000000..2b1d84d77
--- /dev/null
+++ b/javascript/duktape/HTMLFrameElement.bnd
@@ -0,0 +1,35 @@
+/* HTML form 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 HTMLFrameElement(struct dom_html_element *html_frame_element::html_element);
+
+getter HTMLFrameElement::frameBorder();
+setter HTMLFrameElement::frameBorder();
+
+getter HTMLFrameElement::longDesc();
+setter HTMLFrameElement::longDesc();
+
+getter HTMLFrameElement::marginHeight();
+setter HTMLFrameElement::marginHeight();
+
+getter HTMLFrameElement::marginWidth();
+setter HTMLFrameElement::marginWidth();
+
+getter HTMLFrameElement::name();
+setter HTMLFrameElement::name();
+
+getter HTMLFrameElement::noResize();
+setter HTMLFrameElement::noResize();
+
+getter HTMLFrameElement::scrolling();
+setter HTMLFrameElement::scrolling();
+
+getter HTMLFrameElement::src();
+setter HTMLFrameElement::src();
diff --git a/javascript/duktape/netsurf.bnd b/javascript/duktape/netsurf.bnd
index c60b66752..b9da3a449 100644
--- a/javascript/duktape/netsurf.bnd
+++ b/javascript/duktape/netsurf.bnd
@@ -72,12 +72,12 @@ struct dom_html_br_element;
#include "HTMLElement.bnd"
#include "HTMLFontElement.bnd"
#include "HTMLFormElement.bnd"
+#include "HTMLFrameElement.bnd"
#include "HTMLHRElement.bnd"
/* specialisations of html_element */
init HTMLUnknownElement(struct dom_html_element *html_unknown_element::html_element);
init HTMLDirectoryElement(struct dom_html_element *html_directory_element::html_element);
-init HTMLFrameElement(struct dom_html_element *html_frame_element::html_element);
init HTMLFrameSetElement(struct dom_html_element *html_frame_set_element::html_element);
init HTMLMarqueeElement(struct dom_html_element *html_marquee_element::html_element);
init HTMLCanvasElement(struct dom_html_element *html_canvas_element::html_element);