1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:48:10 +00:00

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

@ -19,4 +19,6 @@ interface HTMLIFrameElement : HTMLElement {
[LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
[LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
Document? getSVGDocument();
};