I have a very simple jsfiddle here:
It consists of this html:
<svg></svg>
And this javascript:
alert(document.getElementsByTagName("svg")[0].children);
I expect it to alert something like "[Object HtmlCollection]". In IE 11 though, it gives "undefined". It seems that the children
property is not defined on SVGSVGElement
despite claims on the internet that IE 11 does support svg. What gives?