LibWeb: Implement getSVGDocument() for BrowsingContextContainer

Specifically HTMLIFrameElement and HTMLObjectElement. HTMLEmbedElement
will gain it automatically once it's also converted to inherit from
BrowsingContextContainer.
This commit is contained in:
Idan Horowitz
2022-03-24 22:08:06 +02:00
committed by Andreas Kling
parent fed11e625e
commit f82d4d001d
4 changed files with 18 additions and 0 deletions

View File

@@ -20,4 +20,5 @@ interface HTMLObjectElement : HTMLElement {
[LegacyNullToEmptyString, Reflect] attribute DOMString border;
Document? getSVGDocument();
};