mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 14:59:47 +03:00
31 lines
833 B
Plaintext
31 lines
833 B
Plaintext
/* HTML text area 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 HTMLTextAreaElement(struct dom_html_element *html_text_area_element::html_element);
|
|
|
|
getter HTMLTextAreaElement::defaultValue();
|
|
setter HTMLTextAreaElement::defaultValue();
|
|
|
|
getter HTMLTextAreaElement::disabled();
|
|
setter HTMLTextAreaElement::disabled();
|
|
|
|
getter HTMLTextAreaElement::name();
|
|
setter HTMLTextAreaElement::name();
|
|
|
|
getter HTMLTextAreaElement::readOnly();
|
|
setter HTMLTextAreaElement::readOnly();
|
|
|
|
getter HTMLTextAreaElement::type();
|
|
|
|
getter HTMLTextAreaElement::value();
|
|
setter HTMLTextAreaElement::value();
|
|
|
|
|