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;