Lines Matching refs:nelem
104 nelem = dom.createElement("element")
105 root.insertBefore(nelem, elem)
108 and root.childNodes[0] is nelem
109 and root.childNodes.item(0) is nelem
112 and root.firstChild is nelem
116 nelem = dom.createElement("element")
117 root.insertBefore(nelem, None)
122 and root.childNodes[2] is nelem
123 and root.childNodes.item(2) is nelem
124 and root.lastChild is nelem
125 and nelem.previousSibling is elem
129 root.insertBefore(nelem2, nelem)
134 and root.childNodes[3] is nelem
135 and root.childNodes.item(3) is nelem
136 and nelem2.nextSibling is nelem
137 and nelem.previousSibling is nelem2