summaryrefslogtreecommitdiff
path: root/javascript/duktape/HTMLIFrameElement.bnd
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-13 16:24:22 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-13 16:24:22 +0100
commitb54bf459a50636a36bff578ed3a7a763ef097295 (patch)
treea7130a5779c3e74f67c51415b1141277be9cc898 /javascript/duktape/HTMLIFrameElement.bnd
parent450cefbd490c2e11262ee15d025ffb18b0e9ff16 (diff)
downloadnetsurf-b54bf459a50636a36bff578ed3a7a763ef097295.tar.gz
netsurf-b54bf459a50636a36bff578ed3a7a763ef097295.tar.bz2
add automaticaly generated property setter and getters to HTMLIFrameElement
Diffstat (limited to 'javascript/duktape/HTMLIFrameElement.bnd')
-rw-r--r--javascript/duktape/HTMLIFrameElement.bnd41
1 files changed, 41 insertions, 0 deletions
diff --git a/javascript/duktape/HTMLIFrameElement.bnd b/javascript/duktape/HTMLIFrameElement.bnd
new file mode 100644
index 000000000..64353769c
--- /dev/null
+++ b/javascript/duktape/HTMLIFrameElement.bnd
@@ -0,0 +1,41 @@
+/* HTML I frame 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 HTMLIFrameElement(struct dom_html_element *html_iframe_element::html_element);
+
+getter HTMLIFrameElement::align();
+setter HTMLIFrameElement::align();
+
+getter HTMLIFrameElement::frameBorder();
+setter HTMLIFrameElement::frameBorder();
+
+getter HTMLIFrameElement::height();
+setter HTMLIFrameElement::height();
+
+getter HTMLIFrameElement::longDesc();
+setter HTMLIFrameElement::longDesc();
+
+getter HTMLIFrameElement::marginHeight();
+setter HTMLIFrameElement::marginHeight();
+
+getter HTMLIFrameElement::marginWidth();
+setter HTMLIFrameElement::marginWidth();
+
+getter HTMLIFrameElement::name();
+setter HTMLIFrameElement::name();
+
+getter HTMLIFrameElement::scrolling();
+setter HTMLIFrameElement::scrolling();
+
+getter HTMLIFrameElement::src();
+setter HTMLIFrameElement::src();
+
+getter HTMLIFrameElement::width();
+setter HTMLIFrameElement::width();