HtmlBgsoundElement
Represents the HTML bgsound element.
using AngleSharp.Attributes;
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
[DomHistorical]
internal sealed class HtmlBgsoundElement : HtmlElement
{
public HtmlBgsoundElement(Document owner, string prefix = null)
: base(owner, TagNames.Bgsound, prefix, NodeFlags.SelfClosing | NodeFlags.Special)
{
}
}
}