mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
From the Web IDL spec: https://heycam.github.io/webidl/#prod-Namespace Namespace :: namespace identifier { NamespaceMembers } ;
13 lines
353 B
Plaintext
13 lines
353 B
Plaintext
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;
|
|
|
|
};
|