1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

LibWeb: Add textarea value properties

This commit is contained in:
Bastiaan van der Plaat 2023-12-10 17:48:42 +01:00 committed by Andreas Kling
parent e33ae9a58b
commit 091faf1aae
5 changed files with 105 additions and 9 deletions

View file

@ -21,9 +21,9 @@ interface HTMLTextAreaElement : HTMLElement {
[CEReactions, Reflect] attribute DOMString wrap;
readonly attribute DOMString type;
// FIXME: [CEReactions] attribute DOMString defaultValue;
// FIXME: attribute [LegacyNullToEmptyString] DOMString value;
// FIXME: readonly attribute unsigned long textLength;
[CEReactions] attribute DOMString defaultValue;
[LegacyNullToEmptyString] attribute DOMString value;
readonly attribute unsigned long textLength;
// FIXME: readonly attribute boolean willValidate;
// FIXME: readonly attribute ValidityState validity;