From fed11e625efe1718e498e30ab512c47aa75819a5 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Thu, 24 Mar 2022 22:07:23 +0200 Subject: [PATCH] LibWeb: Expose contentDocument on HTMLObjectElement --- Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl index 694b2361b31..ea00499873f 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.idl @@ -9,6 +9,8 @@ interface HTMLObjectElement : HTMLElement { [Reflect] attribute DOMString width; [Reflect] attribute DOMString height; + readonly attribute Document? contentDocument; + [Reflect] attribute DOMString align; [Reflect] attribute DOMString archive; [Reflect] attribute DOMString code;