devtools/htmlparser.py
changeset 8972 771337c3a754
parent 8951 5cfc0387d63f
child 8973 6711f78c18be
equal deleted inserted replaced
8971:062e40f41b57 8972:771337c3a754
   276                         return True
   276                         return True
   277                 except KeyError:
   277                 except KeyError:
   278                     continue
   278                     continue
   279         return False
   279         return False
   280 
   280 
   281 VALMAP = {None: None, 'dtd': DTDValidator, 'xml': SaxOnlyValidator}
   281 VALMAP = {None: None,
       
   282           'dtd': DTDValidator,
       
   283           'xml': XMLValidator,
       
   284           'html': HTMLValidator,
       
   285           }