Home | History | Annotate | Download | only in test

Lines Matching refs:toxml

81                 and root.toxml() == "<doc><element/><foo/></doc>"
93 and root.toxml() == "<doc><element/><foo/><element/></doc>"
105 and root.toxml() ==
224 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAA")
237 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAB")
431 domstr = dom.toxml()
473 dom.getElementsByTagName('B')[0].childNodes[0].toxml(),
474 dom2.getElementsByTagName('B')[0].childNodes[0].toxml())
609 and clone.toxml() == '<doc attr="value"/>'
618 and clone.toxml() == '<doc attr="value"><foo/></doc>'
1056 self.confirm(doc.toxml() == u'<?xml version="1.0" ?><foo>\u20ac</foo>'
1057 and doc.toxml('utf-8') ==
1059 and doc.toxml('iso-8859-15') ==
1498 self.assertRaises(ValueError, doc.toxml)
1503 doc2 = parseString(doc.toxml())