Home | History | Annotate | Download | only in core

Lines Matching refs:element

36  *       Create a new element node ('root') and append three newly created child nodes (all have 
76 Element element;
77 Element child1;
78 Element child2;
79 Element child3;
85 element = doc.createElementNS("http://www.w3.org/DOM", "root");
89 appendedChild = element.appendChild(child1);
90 appendedChild = element.appendChild(child2);
91 appendedChild = element.appendChild(child3);
92 elementList = element.getElementsByTagNameNS(nullNS, "child");
94 elementList = element.getElementsByTagNameNS("*", "child");