mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +00:00
LibWeb: Fix HTMLFrameElement noresize obsolete property typo
This commit is contained in:
parent
4712f53dd7
commit
e0c8a14fab
Notes:
github-actions[bot]
2024-08-13 12:09:24 +00:00
Author: https://github.com/bplaat Commit: https://github.com/LadybirdBrowser/ladybird/commit/e0c8a14fab9 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1058
2 changed files with 2 additions and 1 deletions
|
@ -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) \
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue