WebIDLpedia

SVGAElement interface

Definition

Scalable Vector Graphics (SVG) 2 defines SVGAElement



[Exposed=Window]
interface SVGAElement : SVGGraphicsElement {
  [Reflect, SameObject] readonly attribute SVGAnimatedString target;
  [Reflect] attribute DOMString download;
  [Reflect] attribute USVString ping;
  [Reflect] attribute DOMString rel;
  [Reflect="rel", SameObject, PutForwards=value] readonly attribute DOMTokenList relList;

  attribute DOMString referrerPolicy;
};

SVGAElement includes SVGURIReference;
SVGAElement includes HyperlinkElementUtils;
Consolidated IDL (across mixin and partials)


[Exposed=Window]
interface SVGAElement : SVGGraphicsElement {
  [Reflect, SameObject] readonly attribute SVGAnimatedString target;
  [Reflect] attribute DOMString download;
  [Reflect] attribute USVString ping;
  [Reflect] attribute DOMString rel;
  [Reflect="rel", SameObject, PutForwards=value] readonly attribute DOMTokenList relList;

  attribute DOMString referrerPolicy;
  [SameObject] readonly attribute SVGAnimatedString href;
  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;

  [CEReactions, Reflect] attribute DOMString hreflang;
  [CEReactions, Reflect] attribute DOMString type;
};