LibWeb: Generate binding for HTMLObjectElement.contentWindow attribute

This only required adding the appropriate definition to the IDL file,
as `NavigableContainer` already implements the logic that we need.
This commit is contained in:
Tim Ledbetter
2024-05-18 10:19:48 +01:00
committed by Andreas Kling
parent b2e6843055
commit c36ba450be
3 changed files with 22 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ interface HTMLObjectElement : HTMLElement {
[CEReactions, Reflect] attribute DOMString width;
[CEReactions, Reflect] attribute DOMString height;
readonly attribute Document? contentDocument;
// FIXME: readonly attribute WindowProxy? contentWindow;
readonly attribute WindowProxy? contentWindow;
Document? getSVGDocument();
// FIXME: readonly attribute boolean willValidate;