mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-02-01 07:06:05 +03:00
add automaticaly generated property setter and getters to HTMLMapElement
This commit is contained in:
parent
5fdf040e90
commit
d57dec2454
@ -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
|
||||
|
14
javascript/duktape/HTMLMapElement.bnd
Normal file
14
javascript/duktape/HTMLMapElement.bnd
Normal 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();
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user