MathMLElement
The MathMLElement
interface represents any MathML element.
Instance properties
Also inherits properties from its parent, Element
.
MathMLElement.attributeStyleMap
Read only-
A
StylePropertyMap
representing the declarations of the element'sstyle
attribute. MathMLElement.style
-
A
CSSStyleDeclaration
representing the declarations of the element'sstyle
attribute.
Instance methods
This interface has no methods, but inherits methods from its parent, Element
.
Examples
>MathML
html
<math>
<msqrt>
<mi>x</mi>
</msqrt>
</math>
JavaScript
js
document.querySelector("msqrt").constructor.name; // MathMLElement