/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodeappendchildnewchilddiffdocument.java | 31 * The "appendChild(newChild)" method raises a 32 * WRONG_DOCUMENT_ERR DOMException if the "newChild" was 72 Node newChild; 78 newChild = doc1.createElement("br"); 85 appendedChild = elementNode.appendChild(newChild);
|
hc_nodeappendchildnodeancestor.java | 31 * The "appendChild(newChild)" method raises a 68 Node newChild; 75 newChild = doc.getDocumentElement(); 82 appendedChild = employeeNode.appendChild(newChild);
|
hc_nodeinsertbeforeinvalidnodetype.java | 31 * The "insertBefore(newChild,refChild)" method raises a 33 * a type that does not allow children of the type "newChild" 73 Node newChild; 78 newChild = doc.createAttribute("title"); 86 insertedNode = rootNode.insertBefore(newChild, refChild);
|
hc_nodeinsertbeforenewchilddiffdocument.java | 31 * The "insertBefore(newChild,refChild)" method raises a 32 * WRONG_DOCUMENT_ERR DOMException if the "newChild" was 73 Node newChild; 79 newChild = doc1.createElement("br"); 87 insertedNode = elementNode.insertBefore(newChild, refChild);
|
hc_nodeinsertbeforenodeancestor.java | 31 * The "insertBefore(newChild,refChild)" method raises a 68 Node newChild; 75 newChild = doc.getDocumentElement(); 84 insertedNode = employeeNode.insertBefore(newChild, refChild);
|
hc_nodeinsertbeforenodename.java | 31 * The "insertBefore(newChild,refchild)" method returns 36 * returned from the "insertBefore(newChild,refChild)" 37 * method. The node returned should be "newChild". 70 Node newChild; 78 newChild = doc.createElement("br"); 79 insertedNode = employeeNode.insertBefore(newChild, refChild);
|
hc_nodeinsertbeforerefchildnonexistent.java | 31 * The "insertBefore(newChild,refChild)" method raises a 71 Node newChild; 76 newChild = doc.createElement("br"); 84 insertedNode = elementNode.insertBefore(newChild, refChild);
|
hc_nodeinsertbeforerefchildnull.java | 32 * "insertBefore(newChild,refChild)" method inserts the 33 * node "newChild" at the end of the list of children. 36 * "insertBefore(newChild,refChild)" method with 37 * refChild=null. Since "refChild" is null the "newChild" 40 * node of the list should be "newChild". 73 Node newChild; 81 newChild = doc.createElement("br"); 82 insertedNode = employeeNode.insertBefore(newChild, refChild);
|
hc_nodereplacechild.java | 31 * The "replaceChild(newChild,oldChild)" method replaces 32 * the node "oldChild" with the node "newChild". 37 * Element should be "newChild". 69 Node newChild; 78 newChild = doc.createElement("br"); 79 replacedNode = employeeNode.replaceChild(newChild, oldChild);
|
hc_nodereplacechildinvalidnodetype.java | 31 * The "replaceChild(newChild,oldChild)" method raises a 33 * a type that does not allow children of the type "newChild" 73 Node newChild; 78 newChild = doc.createAttribute("lang"); 86 replacedChild = rootNode.replaceChild(newChild, oldChild);
|
hc_nodereplacechildnewchilddiffdocument.java | 31 * The "replaceChild(newChild,oldChild)" method raises a 32 * WRONG_DOCUMENT_ERR DOMException if the "newChild" was 73 Node newChild; 79 newChild = doc1.createElement("br"); 87 replacedChild = elementNode.replaceChild(newChild, oldChild);
|
hc_nodereplacechildnodeancestor.java | 31 * The "replaceChild(newChild,oldChild)" method raises a 68 Node newChild; 75 newChild = doc.getDocumentElement(); 84 replacedNode = employeeNode.replaceChild(newChild, oldChild);
|
hc_nodereplacechildnodename.java | 31 * The "replaceChild(newChild,oldChild)" method returns 36 * returned by the "replaceChild(newChild,oldChild)" 71 Node newChild; 79 newChild = doc.createElement("br"); 80 replacedNode = employeeNode.replaceChild(newChild, oldChild);
|
hc_nodereplacechildoldchildnonexistent.java | 31 * The "replaceChild(newChild,oldChild)" method raises a 69 Node newChild; 74 newChild = doc.createElement("br"); 82 replacedNode = elementNode.replaceChild(newChild, oldChild);
|
nodeappendchildnewchilddiffdocument.java | 31 * The "appendChild(newChild)" method raises a 32 * WRONG_DOCUMENT_ERR DOMException if the "newChild" was 73 Node newChild; 79 newChild = doc1.createElement("newChild"); 86 appendedChild = elementNode.appendChild(newChild);
|
nodeinsertbeforeinvalidnodetype.java | 31 * The "insertBefore(newChild,refChild)" method raises a 33 * a type that does not allow children of the type "newChild" 72 Node newChild; 78 newChild = doc.createAttribute("newAttribute"); 85 insertedNode = rootNode.insertBefore(newChild, refChild);
|
nodeinsertbeforenewchilddiffdocument.java | 31 * The "insertBefore(newChild,refChild)" method raises a 32 * WRONG_DOCUMENT_ERR DOMException if the "newChild" was 73 Node newChild; 79 newChild = doc1.createElement("newChild"); 87 insertedNode = elementNode.insertBefore(newChild, refChild);
|
nodeinsertbeforenodeancestor.java | 31 * The "insertBefore(newChild,refChild)" method raises a 70 Node newChild; 77 newChild = doc.getDocumentElement(); 86 insertedNode = employeeNode.insertBefore(newChild, refChild);
|
nodeinsertbeforenodename.java | 31 * The "insertBefore(newChild,refchild)" method returns 36 * returned from the "insertBefore(newChild,refChild)" 37 * method. The node returned should be "newChild". 70 Node newChild; 78 newChild = doc.createElement("newChild"); 79 insertedNode = employeeNode.insertBefore(newChild, refChild); 81 assertEquals("nodeInsertBeforeNodeNameAssert1", "newChild", childName);
|
nodeinsertbeforerefchildnonexistent.java | 31 * The "insertBefore(newChild,refChild)" method raises a 71 Node newChild; 76 newChild = doc.createElement("newChild"); 84 insertedNode = elementNode.insertBefore(newChild, refChild);
|
nodeinsertbeforerefchildnull.java | 32 * "insertBefore(newChild,refChild)" method inserts the 33 * node "newChild" at the end of the list of children. 36 * "insertBefore(newChild,refChild)" method with 37 * refChild=null. Since "refChild" is null the "newChild" 40 * node of the list should be "newChild". 73 Node newChild; 81 newChild = doc.createElement("newChild"); 82 insertedNode = employeeNode.insertBefore(newChild, refChild); 85 assertEquals("nodeInsertBeforeRefChildNullAssert1", "newChild", childName) [all...] |
nodereplacechild.java | 31 * The "replaceChild(newChild,oldChild)" method replaces 32 * the node "oldChild" with the node "newChild". 37 * Element should be "newChild". 69 Node newChild; 78 newChild = doc.createElement("newChild"); 79 replacedNode = employeeNode.replaceChild(newChild, oldChild); 82 assertEquals("nodeReplaceChildAssert1", "newChild", childName);
|
nodereplacechildinvalidnodetype.java | 31 * The "replaceChild(newChild,oldChild)" method raises a 33 * a type that does not allow children of the type "newChild" 72 Node newChild; 78 newChild = doc.createAttribute("newAttribute"); 85 replacedChild = rootNode.replaceChild(newChild, oldChild);
|
nodereplacechildnewchilddiffdocument.java | 31 * The "replaceChild(newChild,oldChild)" method raises a 32 * WRONG_DOCUMENT_ERR DOMException if the "newChild" was 73 Node newChild; 79 newChild = doc1.createElement("newChild"); 87 replacedChild = elementNode.replaceChild(newChild, oldChild);
|
nodereplacechildnodeancestor.java | 31 * The "replaceChild(newChild,oldChild)" method raises a 70 Node newChild; 77 newChild = doc.getDocumentElement(); 86 replacedNode = employeeNode.replaceChild(newChild, oldChild);
|