Searched refs:adoptNode (Results 1 - 25 of 46) sorted by relevance

12

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddocumentadoptnode07.js78 Invoke the adoptNode method on this document with the value of the source parameter as itself.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
100 adoptedDoc = doc.adoptNode(doc);
H A Ddocumentadoptnode15.js78 Using the method adoptNode, adopt a newly created DocumentFragment node without any children.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
99 adoptedDocFrag = doc.adoptNode(docFragment);
H A Ddocumentadoptnode30.js78 Invoke the adoptNode method on this document using a new Text node as the source. Verify
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
98 newText = doc.createTextNode("Document.adoptNode test for a TEXT_NODE");
99 adoptedText = doc.adoptNode(newText);
108 assertEquals("documentadoptnode30","Document.adoptNode test for a TEXT_NODE",nodeValue);
H A Ddocumentadoptnode36.js78 Invoke the adoptNode method on this document using a new PI node created in a new doc
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
119 adoptedPI1 = newDoc.adoptNode(newPI1);
126 adoptedPI2 = newDoc.adoptNode(newPI2);
H A Ddocumentadoptnode08.js78 Invoke the adoptNode method on this document with a new document as the value of the
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
115 adoptedDoc = doc.adoptNode(newDoc);
H A Ddocumentadoptnode09.js78 Invoke the adoptNode method on a new document with this document as the value of the
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
115 adoptedDoc = newDoc.adoptNode(doc);
H A Ddocumentadoptnode10.js78 Invoke the adoptNode method on this document with the value of the source parameter as this
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
103 adoptedDocType = doc.adoptNode(docType);
H A Ddocumentadoptnode11.js78 Invoke the adoptNode method on this document with the value of the source parameter equal to a new
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
114 adoptedDocType = doc.adoptNode(docType);
H A Ddocumentadoptnode13.js78 Using the method adoptNode, adopt a newly created DocumentFragment node populated with
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
106 adoptedDocFrag = doc.adoptNode(docFragment);
H A Ddocumentadoptnode17.js78 Invoke the adoptNode method on this document with the entity ent1 as the source. Since this is
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
108 adoptedEnt = doc.adoptNode(ent);
H A Ddocumentadoptnode19.js78 Invoke the adoptNode method on this document with the notation notation1 as the source. Since this is
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
108 adoptedNotaion = doc.adoptNode(notation);
H A Ddocumentadoptnode22.js78 Invoke the adoptNode method on this document with the documentElement as the source.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
102 adoptedNode = doc.adoptNode(docElement);
H A Ddocumentadoptnode23.js78 Invoke the adoptNode method on this document with the first acronym element node of this
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
105 adoptedNode = doc.adoptNode(acronymElem);
H A Ddocumentadoptnode28.js78 Invoke the adoptNode method on this document using the "p" element with the default
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
106 adoptedNode = doc.adoptNode(employeeElem);
H A Ddocumentadoptnode31.js78 Invoke the adoptNode method on this document using a new Text node from a new Document as the
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
114 newText = newDoc.createTextNode("new Document.adoptNode test for a TEXT_NODE");
115 adoptedText = doc.adoptNode(newText);
124 assertEquals("documentadoptnode31","new Document.adoptNode test for a TEXT_NODE",nodeValue);
H A Ddocumentadoptnode32.js84 Invoke the adoptNode method on another document using a new CDataSection node created in this
90 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
112 newCDATA = doc.createCDATASection("Document.adoptNode test for a CDATASECTION_NODE");
113 adoptedCDATA = docAdopter.adoptNode(newCDATA);
122 assertEquals("documentadoptnode32","Document.adoptNode test for a CDATASECTION_NODE",nodeValue);
H A Ddocumentadoptnode33.js78 Invoke the adoptNode method on this document using a new CDataSection node created in a new
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
114 newCDATA = newDoc.createCDATASection("Document.adoptNode test for a CDATASECTION_NODE");
115 adoptedCDATA = doc.adoptNode(newCDATA);
124 assertEquals("documentadoptnode33","Document.adoptNode test for a CDATASECTION_NODE",nodeValue);
H A Ddocumentadoptnode34.js78 Invoke the adoptNode method on a new document using a new Comment node created in it
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
114 newComment = newDoc.createComment("Document.adoptNode test for a COMMENT_NODE");
115 adoptedComment = newDoc.adoptNode(newComment);
124 assertEquals("documentadoptnode34","Document.adoptNode test for a COMMENT_NODE",nodeValue);
H A Ddocumentrenamenode09.js113 adopted = newDoc.adoptNode(attr);
H A Ddocumentadoptnode01.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
112 adoptedclass = doc.adoptNode(attr);
H A Ddocumentadoptnode03.js78 Invoke adoptNode on this document to adopt the a new namespace aware attribute node. Check
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
105 adoptedAttr = doc.adoptNode(newAttr);
H A Ddocumentadoptnode04.js78 Invoke adoptNode on a new document to adopt a new namespace aware attribute node created by
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
120 adoptedAttr = newDoc.adoptNode(newAttr);
H A Ddocumentadoptnode05.js78 Invoke adoptNode on a new document to adopt the default attribute "dir". Check if
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
123 adoptedAttr = newDoc.adoptNode(dir);
H A Ddocumentadoptnode12.js78 Invoke the adoptNode method on a new document with the value of the source parameter equal to a new
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
119 adoptedDocType = newDoc.adoptNode(docType);
H A Ddocumentadoptnode14.js78 Using the method adoptNode in a new Document, adopt a newly created DocumentFragment node populated with
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
126 adoptedDocFrag = newDoc.adoptNode(docFragment);

Completed in 496 milliseconds

12