Home
last modified time | relevance | path

Searched refs:newComment (Results 1 – 15 of 15) sorted by relevance

/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dnodeinsertbefore09.js97 var newComment;
109 newComment = doc.createComment("Comment");
110 appendedChild = doc.appendChild(newComment);
114 inserted = doc.insertBefore(docFrag,newComment);
115 comment = newComment.previousSibling;
Dnodeinsertbefore01.js95 var newComment;
109 newComment = doc.createComment("Comment");
111 insertedComment = doc.insertBefore(newComment,docElem);
115 insertedPI = doc.insertBefore(newPI,newComment);
Dnodereplacechild39.js91 var newComment;
107 newComment = doc.createComment("second element goes here");
108 retNode = doc.appendChild(newComment);
111 retNode = doc.replaceChild(newElement,newComment);
Dnodereplacechild40.js94 var newComment;
110 newComment = doc.createComment("second element goes here");
111 retNode = doc.insertBefore(newComment,docElem);
114 retNode = doc.replaceChild(newDocType,newComment);
Dnodeinsertbefore18.js96 var newComment;
112 newComment = doc.createComment("Comment");
116 appendedChild = element.appendChild(newComment);
119 inserted = element.insertBefore(newComment,newElem);
Dnodeinsertbefore02.js94 var newComment;
122 newComment = newDoc.createComment("Comment");
124 insertedComment = newDoc.insertBefore(newComment,newDocType);
128 insertedPI = newDoc.insertBefore(newPI,newComment);
Dnodereplacechild30.js96 var newComment;
116 newComment = doc.createComment("Comment");
117 appendedChild = parent.appendChild(newComment);
140 replaced = parent.replaceChild(newComment,oldChild);
144 replaced = parent.replaceChild(oldChild,newComment);
Ddocumentadoptnode34.js92 var newComment;
114 newComment = newDoc.createComment("Document.adoptNode test for a COMMENT_NODE");
115 adoptedComment = newDoc.adoptNode(newComment);
Dnodeinsertbefore08.js101 var newComment;
117 newComment = doc.createComment("Comment");
122 inserted = doc.insertBefore(newComment,docElem);
Dnodeinsertbefore07.js101 var newComment;
117 newComment = docAlt.createComment("Comment");
122 inserted = doc.insertBefore(newComment,docElem);
Dcomments01.js92 var newComment;
109 newComment = doc.createComment("COMMENT_NODE");
110 appendedChild = elem.appendChild(newComment);
Dinfoset09.js93 var newComment;
110 newComment = doc.createComment("COMMENT_NODE");
111 appendedChild = elem.appendChild(newComment);
Ddocumentnormalizedocument04.js94 var newComment;
111 newComment = doc.createComment("COMMENT_NODE");
112 appendedChild = elem.appendChild(newComment);
/external/jdiff/src/jdiff/
DCommentsHandler.java82 SingleComment newComment = new SingleComment(id, null); in startElement() local
84 currSingleComment_.add(newComment); in startElement()
DHTMLReportGenerator.java2039 SingleComment newComment = new SingleComment(commentID, comment); in emitComment() local
2040 newComments_.addComment(newComment); in emitComment()