Definition
MathML Core defines MathMLAnchorElement
[Exposed=Window]
interface MathMLAnchorElement : MathMLElement {
[ReflectSetter] attribute USVString href;
[Reflect] attribute DOMString target;
};
MathMLAnchorElement includes HyperlinkElementUtils;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface MathMLAnchorElement : MathMLElement {
[ReflectSetter] attribute USVString href;
[Reflect] attribute DOMString target;
readonly attribute USVString origin;
[CEReactions] attribute USVString protocol;
[CEReactions] attribute USVString username;
[CEReactions] attribute USVString password;
[CEReactions] attribute USVString host;
[CEReactions] attribute USVString hostname;
[CEReactions] attribute USVString port;
[CEReactions] attribute USVString pathname;
[CEReactions] attribute USVString search;
[CEReactions] attribute USVString hash;
};