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