From 3877d4ad03134c727624b85e830539b3fe15dbdf Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Mon, 12 Oct 2015 13:29:40 +0100 Subject: add automaticaly generated property setter and getters to HTMLFormElement --- javascript/duktape/HTMLFormElement.bnd | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 javascript/duktape/HTMLFormElement.bnd (limited to 'javascript/duktape/HTMLFormElement.bnd') diff --git a/javascript/duktape/HTMLFormElement.bnd b/javascript/duktape/HTMLFormElement.bnd new file mode 100644 index 000000000..3906cf0b3 --- /dev/null +++ b/javascript/duktape/HTMLFormElement.bnd @@ -0,0 +1,26 @@ +/* HTML form element binding using duktape and libdom + * + * Copyright 2015 Vincent Sanders + * + * 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 HTMLFormElement(struct dom_html_element *html_form_element::html_element); + +getter HTMLFormElement::acceptCharset(); +setter HTMLFormElement::acceptCharset(); + +getter HTMLFormElement::action(); +setter HTMLFormElement::action(); + +getter HTMLFormElement::enctype(); +setter HTMLFormElement::enctype(); + +getter HTMLFormElement::method(); +setter HTMLFormElement::method(); + +getter HTMLFormElement::target(); +setter HTMLFormElement::target(); -- cgit v1.2.3