From 45c2b1f62c5931a3dd9b573fc01095d95289d7e0 Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Mon, 12 Aug 2024 20:13:28 +0100 Subject: [PATCH] LibWeb/HTML: Implement HTMLIFrameElement.longDesc --- Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl index 59307b921c1..1f8b2451c47 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLIFrameElement.idl @@ -26,7 +26,7 @@ interface HTMLIFrameElement : HTMLElement { [CEReactions, Reflect] attribute DOMString align; [CEReactions, Reflect] attribute DOMString scrolling; [CEReactions, Reflect=frameborder] attribute DOMString frameBorder; - [FIXME, CEReactions] attribute USVString longDesc; + [CEReactions, Reflect=longdesc] attribute USVString longDesc; [CEReactions, LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight; [CEReactions, LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;