/// <summary> /// Creates a new HTML video element. /// </summary> public HtmlVideoElement(Document owner) : base(owner, Tags.Video) { _poster = new BoundLocation(this, AttributeNames.Poster); _videos = null; }
public HtmlVideoElement(Document owner, String prefix = null) : base(owner, TagNames.Video, prefix) { _videos = null; }
/// <summary> /// Creates a new HTML video element. /// </summary> internal HTMLVideoElement() : base(Tags.Video) { _videos = null; }