检查当前平台是否支持 SVG 元素类型。
标签应该是有效的 SVG 元素标签名。
static bool isTagSupported(String tag) { var e = new SvgElement.tag(tag); return e is SvgElement && !(e is UnknownElement); }