LibWeb: Fix HTMLFrameElement noresize obsolete property typo

This commit is contained in:
Bastiaan van der Plaat 2024-08-13 13:08:49 +02:00 committed by Andreas Kling
parent 4712f53dd7
commit e0c8a14fab
Notes: github-actions[bot] 2024-08-13 12:09:24 +00:00
2 changed files with 2 additions and 1 deletions

View file

@ -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) \

View file

@ -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;