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

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