mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 12:12:35 +03:00
Add auto-generated getters/setters on body element
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
parent
9e1b4218a1
commit
ed9894d750
@ -8,6 +8,13 @@
|
|||||||
* http://www.opensource.org/licenses/mit-license
|
* http://www.opensource.org/licenses/mit-license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
prologue HTMLBodyElement()
|
||||||
|
%{
|
||||||
|
#include "utils/corestrings.h"
|
||||||
|
|
||||||
|
#define HANDLER_MAGIC MAGIC(HANDLER_MAP)
|
||||||
|
%}
|
||||||
|
|
||||||
init HTMLBodyElement(struct dom_html_element *html_body_element::html_element);
|
init HTMLBodyElement(struct dom_html_element *html_body_element::html_element);
|
||||||
|
|
||||||
getter HTMLBodyElement::aLink();
|
getter HTMLBodyElement::aLink();
|
||||||
@ -22,3 +29,29 @@ getter HTMLBodyElement::text();
|
|||||||
setter HTMLBodyElement::text();
|
setter HTMLBodyElement::text();
|
||||||
getter HTMLBodyElement::vLink();
|
getter HTMLBodyElement::vLink();
|
||||||
setter HTMLBodyElement::vLink();
|
setter HTMLBodyElement::vLink();
|
||||||
|
getter HTMLBodyElement::onafterprint();
|
||||||
|
setter HTMLBodyElement::onafterprint();
|
||||||
|
getter HTMLBodyElement::onbeforeprint();
|
||||||
|
setter HTMLBodyElement::onbeforeprint();
|
||||||
|
getter HTMLBodyElement::onbeforeunload();
|
||||||
|
setter HTMLBodyElement::onbeforeunload();
|
||||||
|
getter HTMLBodyElement::onhashchange();
|
||||||
|
setter HTMLBodyElement::onhashchange();
|
||||||
|
getter HTMLBodyElement::onlanguagechange();
|
||||||
|
setter HTMLBodyElement::onlanguagechange();
|
||||||
|
getter HTMLBodyElement::onmessage();
|
||||||
|
setter HTMLBodyElement::onmessage();
|
||||||
|
getter HTMLBodyElement::onoffline();
|
||||||
|
setter HTMLBodyElement::onoffline();
|
||||||
|
getter HTMLBodyElement::ononline();
|
||||||
|
setter HTMLBodyElement::ononline();
|
||||||
|
getter HTMLBodyElement::onpagehide();
|
||||||
|
setter HTMLBodyElement::onpagehide();
|
||||||
|
getter HTMLBodyElement::onpageshow();
|
||||||
|
setter HTMLBodyElement::onpageshow();
|
||||||
|
getter HTMLBodyElement::onpopstate();
|
||||||
|
setter HTMLBodyElement::onpopstate();
|
||||||
|
getter HTMLBodyElement::onstorage();
|
||||||
|
setter HTMLBodyElement::onstorage();
|
||||||
|
getter HTMLBodyElement::onunload();
|
||||||
|
setter HTMLBodyElement::onunload();
|
||||||
|
@ -517,32 +517,6 @@ getter HTMLAreaElement::type(string);
|
|||||||
setter HTMLAreaElement::type(string);
|
setter HTMLAreaElement::type(string);
|
||||||
getter HTMLAreaElement::username(user);
|
getter HTMLAreaElement::username(user);
|
||||||
setter HTMLAreaElement::username(user);
|
setter HTMLAreaElement::username(user);
|
||||||
getter HTMLBodyElement::onafterprint(user);
|
|
||||||
setter HTMLBodyElement::onafterprint(user);
|
|
||||||
getter HTMLBodyElement::onbeforeprint(user);
|
|
||||||
setter HTMLBodyElement::onbeforeprint(user);
|
|
||||||
getter HTMLBodyElement::onbeforeunload(user);
|
|
||||||
setter HTMLBodyElement::onbeforeunload(user);
|
|
||||||
getter HTMLBodyElement::onhashchange(user);
|
|
||||||
setter HTMLBodyElement::onhashchange(user);
|
|
||||||
getter HTMLBodyElement::onlanguagechange(user);
|
|
||||||
setter HTMLBodyElement::onlanguagechange(user);
|
|
||||||
getter HTMLBodyElement::onmessage(user);
|
|
||||||
setter HTMLBodyElement::onmessage(user);
|
|
||||||
getter HTMLBodyElement::onoffline(user);
|
|
||||||
setter HTMLBodyElement::onoffline(user);
|
|
||||||
getter HTMLBodyElement::ononline(user);
|
|
||||||
setter HTMLBodyElement::ononline(user);
|
|
||||||
getter HTMLBodyElement::onpagehide(user);
|
|
||||||
setter HTMLBodyElement::onpagehide(user);
|
|
||||||
getter HTMLBodyElement::onpageshow(user);
|
|
||||||
setter HTMLBodyElement::onpageshow(user);
|
|
||||||
getter HTMLBodyElement::onpopstate(user);
|
|
||||||
setter HTMLBodyElement::onpopstate(user);
|
|
||||||
getter HTMLBodyElement::onstorage(user);
|
|
||||||
setter HTMLBodyElement::onstorage(user);
|
|
||||||
getter HTMLBodyElement::onunload(user);
|
|
||||||
setter HTMLBodyElement::onunload(user);
|
|
||||||
getter HTMLButtonElement::autofocus(boolean);
|
getter HTMLButtonElement::autofocus(boolean);
|
||||||
setter HTMLButtonElement::autofocus(boolean);
|
setter HTMLButtonElement::autofocus(boolean);
|
||||||
method HTMLButtonElement::checkValidity();
|
method HTMLButtonElement::checkValidity();
|
||||||
|
Loading…
Reference in New Issue
Block a user