Home | History | Annotate | Download | only in dom

Lines Matching refs:notation

12 # no way to create Entity and Notation nodes via the DOM Level 2
666 notation = doctype.notations.item(i)
669 s = "%s<!NOTATION %s" % (s, notation.nodeName)
670 if notation.publicId:
672 % (s, notation.publicId, notation.systemId)
674 s = '%s SYSTEM "%s">' % (s, notation.systemId)
688 s = "%s NOTATION %s" % (s, entity.notationName)