You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<svg><defs><circleid='stamp' r='10' fill='blue'/></defs><!-- this should render a red circle in the top left --><usexlink:href='#stamp' x='20' y='20' fill='red' stroke='blue'/></svg>
The <use> element doesn't recognise the xlink:href attribute. This line in the generated code...
setAttribute(use,'xlink:href',"#stamp");
...should be something like this instead:
setAttributeNS(use,xlink,'href','#stamp');
(where xlink is "http://www.w3.org/1999/xlink")
The text was updated successfully, but these errors were encountered:
This is broken:
The
<use>
element doesn't recognise thexlink:href
attribute. This line in the generated code......should be something like this instead:
(where
xlink
is"http://www.w3.org/1999/xlink"
)The text was updated successfully, but these errors were encountered: