diff --git a/Userland/Libraries/LibWeb/HTML/AttributeNames.h b/Userland/Libraries/LibWeb/HTML/AttributeNames.h index 746e40a0d3c..9ac71456de8 100644 --- a/Userland/Libraries/LibWeb/HTML/AttributeNames.h +++ b/Userland/Libraries/LibWeb/HTML/AttributeNames.h @@ -119,6 +119,7 @@ namespace AttributeNames { __ENUMERATE_HTML_ATTRIBUTE(name) \ __ENUMERATE_HTML_ATTRIBUTE(nohref) \ __ENUMERATE_HTML_ATTRIBUTE(nomodule) \ + __ENUMERATE_HTML_ATTRIBUTE(noresize) \ __ENUMERATE_HTML_ATTRIBUTE(noshade) \ __ENUMERATE_HTML_ATTRIBUTE(novalidate) \ __ENUMERATE_HTML_ATTRIBUTE(nowrap) \ diff --git a/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLFrameElement.idl index 80cf9698663..4cf2c5925ea 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; - [CEReactions, Reflect=onresize] attribute boolean noResize; + [CEReactions, Reflect=noresize] attribute boolean noResize; [FIXME] readonly attribute Document? contentDocument; [FIXME] readonly attribute WindowProxy? contentWindow;