add automaticaly generated property setter and getters to HTMLMapElement

This commit is contained in:
Vincent Sanders 2015-10-13 23:20:50 +01:00
parent 5fdf040e90
commit d57dec2454
3 changed files with 15 additions and 3 deletions

View File

@ -1049,8 +1049,6 @@ setter HTMLLinkElement::crossOrigin(string);\n
getter HTMLLinkElement::relList(user);\n
getter HTMLLinkElement::sizes(user);\n
getter HTMLMapElement::areas(user);\n
getter HTMLMapElement::name(string);\n
setter HTMLMapElement::name(string);\n
getter HTMLMarqueeElement::behavior(string);\n
setter HTMLMarqueeElement::behavior(string);\n
getter HTMLMarqueeElement::bgColor(string);\n

View File

@ -0,0 +1,14 @@
/* HTML map 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 HTMLMapElement(struct dom_html_element *html_map_element::html_element);
getter HTMLMapElement::name();
setter HTMLMapElement::name();

View File

@ -86,6 +86,7 @@ struct dom_html_br_element;
#include "HTMLLegendElement.bnd"
#include "HTMLLIElement.bnd"
#include "HTMLLinkElement.bnd"
#include "HTMLMapElement.bnd"
init HTMLUnknownElement(struct dom_html_element *html_unknown_element::html_element);
init HTMLDirectoryElement(struct dom_html_element *html_directory_element::html_element);
@ -113,7 +114,6 @@ init HTMLTableSectionElement(struct dom_html_element *html_table_section_element
init HTMLTableColElement(struct dom_html_element *html_table_col_element::html_element);
init HTMLTableCaptionElement(struct dom_html_element *html_table_caption_element::html_element);
init HTMLTableElement(struct dom_html_element *html_table_element::html_element);
init HTMLMapElement(struct dom_html_element *html_map_element::html_element);
init HTMLMediaElement(struct dom_html_element *html_media_element::html_element);
init HTMLTrackElement(struct dom_html_element *html_track_element::html_element);
init HTMLParamElement(struct dom_html_element *html_param_element::html_element);