From 04d16a1ee3a4f8224417bbc5f8abe8ef4ffe5b88 Mon Sep 17 00:00:00 2001 From: Kemal Zebari Date: Fri, 18 Oct 2024 20:21:56 -0700 Subject: [PATCH] LibWeb/HTML: Add missing HTMLElement IDL `autocorrect` as a stub This adds an IDL stub for the autocorrect HTMLElement attribute. --- Userland/Libraries/LibWeb/HTML/HTMLElement.idl | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl index 299668a2fbc..ea85f44ee09 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl @@ -25,6 +25,7 @@ interface HTMLElement : Element { [FIXME, CEReactions] attribute boolean draggable; [FIXME, CEReactions] attribute boolean spellcheck; [FIXME, CEReactions] attribute DOMString autocapitalize; + [FIXME, CEReactions] attribute boolean autocorrect; [LegacyNullToEmptyString, CEReactions] attribute DOMString innerText; [LegacyNullToEmptyString, CEReactions] attribute DOMString outerText;