Home | History | Annotate | Download | only in test

Lines Matching refs:nelem

71         nelem = dom.createElement("element")
72 root.insertBefore(nelem, elem)
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
79 and root.firstChild is nelem
83 nelem = dom.createElement("element")
84 root.insertBefore(nelem, None)
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
92 and nelem.previousSibling is elem
96 root.insertBefore(nelem2, nelem)
101 and root.childNodes[3] is nelem
102 and root.childNodes.item(3) is nelem
103 and nelem2.nextSibling is nelem
104 and nelem.previousSibling is nelem2