From 66528a17cb60c44d8cb946785b19d92a125c923a Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Fri, 12 Jul 2024 23:32:44 +0100 Subject: [PATCH] LibWeb: Implement HTMLFrameElement.noResize --- 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 c984f314475..80cf9698663 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl @@ -11,7 +11,7 @@ interface HTMLFrameElement : HTMLElement { [CEReactions, Reflect] attribute DOMString src; [CEReactions, Reflect=frameborder] attribute DOMString frameBorder; [CEReactions, Reflect=longdesc] attribute DOMString longDesc; - [FIXME, CEReactions] attribute boolean noResize; + [CEReactions, Reflect=onresize] attribute boolean noResize; [FIXME] readonly attribute Document? contentDocument; [FIXME] readonly attribute WindowProxy? contentWindow;