SvgSvgElement
Represents the svg element of the SVG DOM.
using AngleSharp.Html;
namespace AngleSharp.Dom.Svg
{
internal sealed class SvgSvgElement : SvgElement
{
public SvgSvgElement(Document owner, string prefix = null)
: base(owner, TagNames.Svg, prefix, NodeFlags.None)
{
}
}
}