LibWeb: Support autocomplete attribute on form elements

Implement proper support for the `autocomplete` attribute in `input`,
`select` and `textarea` elements.
This commit is contained in:
devgianlu 2025-02-09 15:56:54 +01:00 committed by Tim Ledbetter
commit b8f234719d
Notes: github-actions[bot] 2025-02-26 07:02:12 +00:00
11 changed files with 644 additions and 9 deletions

View file

@ -7,7 +7,7 @@
interface HTMLTextAreaElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Enumerated=Autocomplete, Reflect] attribute DOMString autocomplete;
[CEReactions] attribute DOMString autocomplete;
[CEReactions] attribute unsigned long cols;
[CEReactions, Reflect=dirname] attribute DOMString dirName;
[CEReactions, Reflect] attribute boolean disabled;