add automaticaly generated property setter and getters to HTMLFrameSetElement
This commit is contained in:
parent
d01cecdf7f
commit
5263712ad4
|
@ -887,8 +887,6 @@ method HTMLFormElement::reset();\n
|
|||
method HTMLFormElement::submit();\n
|
||||
getter HTMLFrameElement::contentDocument(user);\n
|
||||
getter HTMLFrameElement::contentWindow(user);\n
|
||||
getter HTMLFrameSetElement::cols(string);\n
|
||||
setter HTMLFrameSetElement::cols(string);\n
|
||||
getter HTMLFrameSetElement::onafterprint(user);\n
|
||||
setter HTMLFrameSetElement::onafterprint(user);\n
|
||||
getter HTMLFrameSetElement::onbeforeprint(user);\n
|
||||
|
@ -915,8 +913,6 @@ getter HTMLFrameSetElement::onstorage(user);\n
|
|||
setter HTMLFrameSetElement::onstorage(user);\n
|
||||
getter HTMLFrameSetElement::onunload(user);\n
|
||||
setter HTMLFrameSetElement::onunload(user);\n
|
||||
getter HTMLFrameSetElement::rows(string);\n
|
||||
setter HTMLFrameSetElement::rows(string);\n
|
||||
getter HTMLHeadingElement::align(string);\n
|
||||
setter HTMLHeadingElement::align(string);\n
|
||||
getter HTMLHRElement::color(string);\n
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* HTML form element binding using duktape and libdom
|
||||
/* HTML frame element binding using duktape and libdom
|
||||
*
|
||||
* Copyright 2015 Vincent Sanders <vince@netsurf-browser.org>
|
||||
*
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
/* HTML frame set 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 HTMLFrameSetElement(struct dom_html_element *html_frame_set_element::html_element);
|
||||
|
||||
getter HTMLFrameSetElement::cols();
|
||||
setter HTMLFrameSetElement::cols();
|
||||
|
||||
getter HTMLFrameSetElement::rows();
|
||||
setter HTMLFrameSetElement::rows();
|
|
@ -73,12 +73,12 @@ struct dom_html_br_element;
|
|||
#include "HTMLFontElement.bnd"
|
||||
#include "HTMLFormElement.bnd"
|
||||
#include "HTMLFrameElement.bnd"
|
||||
#include "HTMLFrameSetElement.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 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);
|
||||
init HTMLTemplateElement(struct dom_html_element *html_template_element::html_element);
|
||||
|
|
Loading…
Reference in New Issue