diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:46 +0100 |
commit | 13d7c09125f8eec703d0a43a9a87fc8aa08f7319 (patch) | |
tree | 70fd643c429cea5c1f9362c2674511d17a53f3b5 /Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl | |
parent | dc28c07fa526841e05e16161c74a6c23984f1dd5 (diff) | |
download | serenity-13d7c09125f8eec703d0a43a9a87fc8aa08f7319.zip |
Libraries: Move to Userland/Libraries/
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl new file mode 100644 index 0000000000..878cc67db0 --- /dev/null +++ b/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl @@ -0,0 +1,12 @@ +interface HTMLTextAreaElement : HTMLElement { + + [Reflect] attribute DOMString placeholder; + [Reflect] attribute DOMString name; + [Reflect] attribute DOMString wrap; + readonly attribute DOMString type; + + [Reflect] attribute boolean disabled; + [Reflect=readonly] attribute boolean readOnly; + [Reflect] attribute boolean required; + +}; |