Searched refs:renameNode (Results 1 - 25 of 34) sorted by relevance

12

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddocumentrenamenode27.js78 Invoke the renameNode method to attempt to rename new Text, Comment, CDataSection,
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
130 renamedTxt = newDoc.renameNode(text,"http://www.w3.org/DOM/Test","text");
141 renamedComment = newDoc.renameNode(comment,"http://www.w3.org/DOM/Test","comment");
152 renamedCdata = newDoc.renameNode(cdata,"http://www.w3.org/DOM/Test","cdata");
163 renamedPi = newDoc.renameNode(pi,"http://www.w3.org/DOM/Test","pi");
174 renamedEntRef = newDoc.renameNode(entref,"http://www.w3.org/DOM/Test","entref");
H A Ddocumentrenamenode23.js79 The method renameNode renames an existing node and raises a NOT_SUPPORTED_ERR
82 Invoke the renameNode method on this document node to attempt to rename itself.
87 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
105 renamedNode = doc.renameNode(doc,"http://www.w3.org/DOM/Test","root");
H A Ddocumentrenamenode28.js78 Invoke the renameNode method to attempt to rename a Entity and Notation nodes of this Document.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
114 renamedEntityNode = doc.renameNode(entity,"http://www.w3.org/DOM/Test","beta");
125 renamedNotationNode = doc.renameNode(notation,"http://www.w3.org/DOM/Test","notation2");
H A Ddocumentrenamenode01.js78 Invoke the renameNode method to rename the class attribute node of the
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
108 renamedclass = doc.renameNode(attr,"http://www.w3.org/DOM/Test","renamedNode");
H A Ddocumentrenamenode02.js78 Invoke the renameNode method to rename the class attribute node of the
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
108 renamedclass = doc.renameNode(attr,"http://www.w3.org/DOM/Test","prefi0x:renamedNode");
H A Ddocumentrenamenode03.js78 Invoke the renameNode method to rename a new attribute node to one whose
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
104 renamedNode = doc.renameNode(attr,"http://www.w3.org/DOM/Test","pre0:fix1");
H A Ddocumentrenamenode04.js78 Invoke the renameNode method to rename a new attribute node to one whose
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
102 renamedNode = doc.renameNode(attr,"","title");
H A Ddocumentrenamenode05.js78 Invoke the renameNode method to rename a new attribute node to one whose
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
104 renamedNode = doc.renameNode(attr,nullNSURI,"title");
H A Ddocumentrenamenode06.js78 Invoke the renameNode method to rename the default attribute "dir" to xsi:schemaLocation.
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
106 renamedclass = doc.renameNode(attr,"http://www.w3.org/2001/XMLSchema-instance","xsi:schemaLocation");
H A Ddocumentrenamenode09.js79 The method renameNode renames an existing node. When the specified node was created
82 Invoke the renameNode method on a new Document node to rename a new attribute node
90 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
114 renamedNode = newDoc.renameNode(attr,"http://www.w3.org/2000/xmlns/","xmlns:xmlns");
H A Ddocumentrenamenode10.js79 The method renameNode renames an existing node and raises a NAMESPACE_ERR
84 Invoke the renameNode method on a new document node to rename a node to nodes
90 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
123 renamedNode = doc.renameNode(textNode,"http://www.w3.org/XML/1998/namespace",qualifiedName);
H A Ddocumentrenamenode11.js79 The method renameNode renames an existing node and raises a NAMESPACE_ERR
84 Invoke the renameNode method on this document node to rename a text node such that its
90 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
114 renamedNode = doc.renameNode(textNode,nullNSURI,"pre:fix");
H A Ddocumentrenamenode12.js79 The method renameNode renames an existing node and raises a NAMESPACE_ERR
84 Invoke the renameNode method on this document node to rename a text node such that its
91 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
111 renamedNode = doc.renameNode(textNode,"http://www.w3.org/XML/1999/namespace","xml:prefix");
H A Ddocumentrenamenode13.js79 The method renameNode renames an existing node and raises a NAMESPACE_ERR
84 Invoke the renameNode method on this document node to rename a text node such that its
91 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
111 renamedNode = doc.renameNode(textNode,"http://www.w3.org/XML/1998/namespace","xmlns:prefix");
H A Ddocumentrenamenode14.js79 The method renameNode renames an existing node and raises a NAMESPACE_ERR
84 Invoke the renameNode method on this document node to rename a text node such that its
91 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
113 renamedNode = doc.renameNode(textNode,"http://www.w3.org/2000/xmlns","xmlns");
H A Ddocumentrenamenode15.js83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
103 renamedclass = doc.renameNode(element,"http://www.w3.org/DOM/Test","qnam:renamedNode");
H A Ddocumentrenamenode16.js78 Invoke the renameNode method to rename the fourth
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
108 renamedclass = doc.renameNode(element,nullNSURI,"renamedNode");
H A Ddocumentrenamenode18.js78 Invoke the renameNode method on this document and try to rename a new element
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
118 renamedNode = doc.renameNode(element,"http://www.w3.org/1999/xhtml","head");
H A Ddocumentrenamenode20.js78 Invoke the renameNode method on this document node to rename a node such that its
85 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
119 renamedNode = doc.renameNode(element,"http://www.example.com/xml","xml:html");
H A Ddocumentrenamenode21.js78 Invoke the renameNode method on this document node to rename a node such that its
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
118 renamedNode = newDoc.renameNode(attr,"http://www.w3.org/2000/XMLNS/","xmlns:xml");
H A Ddocumentrenamenode22.js78 Invoke the renameNode method on this document node to rename a node such that its
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
103 renamedNode = doc.renameNode(attr,"http://www.w3.org/1999/xmlns/","xmlns");
H A Ddocumentrenamenode24.js79 The method renameNode renames an existing node and raises a NOT_SUPPORTED_ERR
82 Invoke the renameNode method on this document node to attempt to rename itself.
88 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
108 renamedNode = doc.renameNode(doc,nullNSURI,"doc:root");
H A Ddocumentrenamenode25.js78 Invoke the renameNode method to attempt to rename a DOcumentType node of this Document.
83 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
103 renamedNode = doc.renameNode(docType,"http://www.w3.org/DOM/Test","root");
H A Ddocumentrenamenode26.js78 Invoke the renameNode method oto attempt to rename a new DocumentFragment node
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
103 renamedNode = doc.renameNode(docFrag,"http://www.w3.org/DOM/Test","root");
H A Ddocumentrenamenode29.js78 Invoke the renameNode method to attempt to rename an Element node of a XML1.0 document
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#Document3-renameNode
104 renamed = doc.renameNode(docElem,"http://www.w3.org/DOM/Test","@");

Completed in 104 milliseconds

12