HomeSort by relevance Sort by last modified time
    Searched full:adoptnode (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/webkit/LayoutTests/fast/dom/NodeList/resources/
adoptNode-node-list-cache-subframe.html 8 doc.adoptNode(b);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentadoptnode30.js 78 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);
documentadoptnode31.js 78 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);
documentadoptnode32.js 84 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);
documentadoptnode33.js 78 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);
documentadoptnode34.js 78 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);
documentadoptnode07.js 78 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);
documentadoptnode08.js 78 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);
documentadoptnode09.js 78 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);
documentadoptnode10.js 78 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);
documentadoptnode11.js 78 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);
documentadoptnode13.js 78 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);
documentadoptnode15.js 78 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);
documentadoptnode17.js 78 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);
documentadoptnode19.js 78 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);
documentadoptnode22.js 78 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);
documentadoptnode23.js 78 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);
documentadoptnode28.js 78 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);
documentadoptnode21.js 79 The adoptNode method changes the ownerDocument of a node, its children, as well as the
83 Invoke the adoptNode method on this Document with the source node being an existing attribute
90 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
114 adoptedTitle = doc.adoptNode(attr);
documentadoptnode24.js 79 The adoptNode method changes the ownerDocument of a node, its children, as well as the
85 Invoke the adoptNode method on a new document with the first code element node of this
91 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-adoptNode
118 adoptedNode = newDoc.adoptNode(codeElem);
documentadoptnode36.js 78 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);
documentadoptnode03.js 78 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);
  /external/webkit/LayoutTests/fast/dom/HTMLFormElement/
adopt-assertion.html 15 otherDocument.adoptNode(document.getElementById("target"));
document-deactivation-callback-crash.html 22 otherDocument.adoptNode(form);
  /external/webkit/LayoutTests/fast/dom/NodeList/
adoptNode-node-list-cache.html 54 <iframe id="frame" src="resources/adoptNode-node-list-cache-subframe.html" onload="frameLoaded()"></iframe>

Completed in 1754 milliseconds

1 2 3