internal static Comment Create(IDOMComment Comment)
 {
     return(new Comment(Comment));
 }
 /// <summary>
 /// Comment constructor.
 /// </summary>
 /// <param name="Comment">WebKit IDOMComment object.</param>
 protected Comment(IDOMComment Comment)
     : base(Comment)
 {
     this.comment = Comment;
 }