Пример #1
0
 /// <summary>
 /// Creates a new HTML audio element.
 /// </summary>
 public HtmlAudioElement(Document owner)
     : base(owner, Tags.Audio)
 {
     _audios = null;
 }
 /// <summary>
 /// Creates a new HTML audio element.
 /// </summary>
 public HtmlAudioElement(Document owner, String prefix = null)
     : base(owner, TagNames.Audio, prefix)
 {
     _audios = null;
 }
Пример #3
0
 /// <summary>
 /// Creates a new HTML audio element.
 /// </summary>
 internal HTMLAudioElement()
     : base(Tags.Audio)
 {
     _audios = null;
 }