[svgwg] SVGAElement webidl issues

longsonr has just created a new issue for https://github.com/w3c/svgwg:

== SVGAElement webidl issues ==
https://www.w3.org/TR/SVG2/linking.html#__svg__SVGAElement__rel

 1. href is present in boh HTMLHyperlinkElementUtils and in HTMLHyperlinkElementUtils but the two definitions conflict as they have different types

  Possible solutions:

 drop HTMLHyperlinkElementUtils

2. download, rel, relList, hreflang and type are all modelled as SVGAnimatedString attributes. There seems no reason to do this as they aren't much use as things to be SMIL animated (in fact download is stated to be non-animatable in the spec).

  Possible solution

    have these the same as the HTML specification i.e. 

           [SetterThrows]
           attribute DOMString download;
           [SetterThrows]
           attribute DOMString rel;
           [PutForwards=value]
           readonly attribute DOMTokenList relList;
           [SetterThrows]
           attribute DOMString hreflang;
           [SetterThrows]
           attribute DOMString type;


Please view or discuss this issue at https://github.com/w3c/svgwg/issues/315 using your GitHub account

Received on Sunday, 7 May 2017 15:08:47 UTC