LibWeb: MathMLElement includes ElementCSSInlineStyle

This commit is contained in:
Jamie Mansfield 2024-09-05 20:35:37 +01:00 committed by Andreas Kling
commit 0fab3d3b62
Notes: github-actions[bot] 2024-09-08 07:46:52 +00:00

View file

@ -1,3 +1,4 @@
#import <CSS/ElementCSSInlineStyle.idl>
#import <DOM/Element.idl>
#import <DOM/EventHandler.idl>
#import <HTML/HTMLElement.idl>
@ -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;