From 0fab3d3b62705eab9fabfe0552d4fa40c7073478 Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Thu, 5 Sep 2024 20:35:37 +0100 Subject: [PATCH] LibWeb: MathMLElement includes ElementCSSInlineStyle --- Userland/Libraries/LibWeb/MathML/MathMLElement.idl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Userland/Libraries/LibWeb/MathML/MathMLElement.idl b/Userland/Libraries/LibWeb/MathML/MathMLElement.idl index 3e12dd72119..d279678796d 100644 --- a/Userland/Libraries/LibWeb/MathML/MathMLElement.idl +++ b/Userland/Libraries/LibWeb/MathML/MathMLElement.idl @@ -1,3 +1,4 @@ +#import #import #import #import @@ -7,3 +8,6 @@ interface MathMLElement : Element { }; MathMLElement includes GlobalEventHandlers; MathMLElement includes HTMLOrSVGElement; // FIXME: We technically use HTMLOrForeignElement which is a rename of HTMLOrSVGElement, when that change is upstreamed we should update here + +// https://drafts.csswg.org/cssom/#dom-elementcssinlinestyle-style +MathMLElement includes ElementCSSInlineStyle;