Lines Matching full:firstchild
58 attrNode.replaceChild(document.createTextNode("g"), attrNode.firstChild);
71 attrNode.insertBefore(document.createTextNode("0"), attrNode.firstChild);
97 attrNode.removeChild(attrNode.firstChild);
107 attrNode.firstChild.nodeValue = "i";
108 shouldBe('attrNode.firstChild.nodeValue', '"i"');
125 attrNode.firstChild.splitText(1);
142 attrNode.firstChild.replaceWholeText("j");
151 attrNode.firstChild.data = "k";
160 attrNode.firstChild.appendData("l");
169 attrNode.firstChild.insertData(1, "1");
178 attrNode.firstChild.deleteData(0, 2);
187 attrNode.firstChild.replaceData(0, 1, "mn");