From e363e8918901ac33ceecc088f30c66797c069c8c Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Fri, 12 Jul 2024 23:28:14 +0100 Subject: [PATCH] LibWeb: Implement HTMLFrameElement.marginWidth --- Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl index 1f7b105baa7..c984f314475 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl @@ -16,6 +16,6 @@ interface HTMLFrameElement : HTMLElement { [FIXME] readonly attribute WindowProxy? contentWindow; [CEReactions, LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight; - [FIXME, CEReactions, LegacyNullToEmptyString] attribute DOMString marginWidth; + [CEReactions, LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth; };