mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:48:11 +00:00
LibWeb: Add textarea cols and rows attribute
This commit is contained in:
parent
f3db0003c2
commit
7e6fc9c26e
3 changed files with 45 additions and 2 deletions
|
@ -7,7 +7,7 @@ interface HTMLTextAreaElement : HTMLElement {
|
|||
[HTMLConstructor] constructor();
|
||||
|
||||
[CEReactions, Reflect] attribute DOMString autocomplete;
|
||||
// FIXME: [CEReactions] attribute unsigned long cols;
|
||||
[CEReactions] attribute unsigned long cols;
|
||||
[CEReactions, Reflect=dirname] attribute DOMString dirName;
|
||||
[CEReactions, Reflect] attribute boolean disabled;
|
||||
readonly attribute HTMLFormElement? form;
|
||||
|
@ -17,7 +17,7 @@ interface HTMLTextAreaElement : HTMLElement {
|
|||
[CEReactions, Reflect] attribute DOMString placeholder;
|
||||
[CEReactions, Reflect=readonly] attribute boolean readOnly;
|
||||
[CEReactions, Reflect] attribute boolean required;
|
||||
// FIXME: [CEReactions] attribute unsigned long rows;
|
||||
[CEReactions] attribute unsigned long rows;
|
||||
[CEReactions, Reflect] attribute DOMString wrap;
|
||||
|
||||
readonly attribute DOMString type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue