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