From 77a30bad9ffb52804b0cfd26f3589ab4c70fc2e3 Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Mon, 12 Aug 2024 20:13:47 +0100 Subject: [PATCH] LibWeb/HTML: Implement HTMLImageElement.longDesc --- Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl index cec92b0d54e..d903faebc4a 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.idl @@ -34,7 +34,7 @@ interface HTMLImageElement : HTMLElement { [CEReactions, Reflect] attribute DOMString align; [CEReactions, Reflect] attribute unsigned long hspace; [CEReactions, Reflect] attribute unsigned long vspace; - [FIXME, CEReactions] attribute USVString longDesc; + [CEReactions, Reflect=longdesc] attribute USVString longDesc; [CEReactions, LegacyNullToEmptyString, Reflect] attribute DOMString border;