mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
LibWeb: Add textarea cols and rows attribute
This commit is contained in:
committed by
Andreas Kling
parent
f3db0003c2
commit
7e6fc9c26e
Notes:
sideshowbarker
2024-07-17 09:41:18 +09:00
Author: https://github.com/bplaat Commit: https://github.com/SerenityOS/serenity/commit/7e6fc9c26e Pull-request: https://github.com/SerenityOS/serenity/pull/22046
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user