Searched refs:nodeValue (Results 1 - 25 of 267) sorted by relevance

1234567891011

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddocumentnormalizedocument10.js82 Create an Element and a text node and verify the nodeValue of this text node and append these to
99 var nodeValue;
115 nodeValue = text.nodeValue;
117 assertEquals("documentnormalizedocument10","Text Node",nodeValue);
126 nodeValue = text.nodeValue;
128 assertEquals("documentnormalizedocument10_true1","Text Node",nodeValue);
138 nodeValue = text.nodeValue;
[all...]
H A Dcanonicalform08.js101 var nodeValue;
127 nodeValue = node.data;
129 length = nodeValue.length;
136 nodeValue = node.nodeValue;
138 length = nodeValue.length;
150 nodeValue = node.nodeValue;
152 length = nodeValue.length;
159 nodeValue
[all...]
H A Ddocumentadoptnode30.js79 if the node has been adopted correctly by checking the nodeValue of the adopted node.
91 var nodeValue;
106 nodeValue = adoptedText.nodeValue;
108 assertEquals("documentadoptnode30","Document.adoptNode test for a TEXT_NODE",nodeValue);
H A Dcanonicalform09.js102 var nodeValue;
129 nodeValue = node.data;
131 length = nodeValue.length;
138 nodeValue = node.nodeValue;
140 length = nodeValue.length;
152 nodeValue = node.nodeValue;
154 length = nodeValue.length;
161 nodeValue
[all...]
H A Ddocumentadoptnode31.js79 source. Verify if the node has been adopted correctly by checking the nodeValue of the adopted
94 var nodeValue;
122 nodeValue = adoptedText.nodeValue;
124 assertEquals("documentadoptnode31","new Document.adoptNode test for a TEXT_NODE",nodeValue);
H A Ddocumentadoptnode32.js85 Document as the source. Verify if the node has been adopted correctly by checking the nodeValue
99 var nodeValue;
120 nodeValue = adoptedCDATA.nodeValue;
122 assertEquals("documentadoptnode32","Document.adoptNode test for a CDATASECTION_NODE",nodeValue);
H A Ddocumentadoptnode33.js79 Document as the source. Verify if the node has been adopted correctly by checking the nodeValue
94 var nodeValue;
122 nodeValue = adoptedCDATA.nodeValue;
124 assertEquals("documentadoptnode33","Document.adoptNode test for a CDATASECTION_NODE",nodeValue);
H A Ddocumentadoptnode34.js79 as the source. Verify if the node has been adopted correctly by checking the nodeValue
94 var nodeValue;
122 nodeValue = adoptedComment.nodeValue;
124 assertEquals("documentadoptnode34","Document.adoptNode test for a COMMENT_NODE",nodeValue);
H A Dnodereplacechild33.js95 var nodeValue;
109 nodeValue = replaced.nodeValue;
111 assertEquals("nodereplacechild33","rtl",nodeValue);
H A Dtextreplacewholetext06.js106 var nodeValue;
122 nodeValue = textNode.nodeValue;
124 assertEquals("textreplacewholetext06","New Text and Cdata",nodeValue);
H A Ddocumentadoptnode01.js79 nodeName, nodeType, nodeValue, specified and ownerElement attributes of the adopted node.
97 var nodeValue;
121 nodeValue = adoptedclass.nodeValue;
133 firstChildValue = firstChild.nodeValue;
152 assertEquals("documentadoptnode01_nodeValue","Yα",nodeValue);
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_nodevalue01.js98 newValue = newNode.nodeValue;
101 newNode.nodeValue = "This should have no effect";
103 newValue = newNode.nodeValue;
H A Dhc_nodevalue02.js98 newValue = newNode.nodeValue;
101 newNode.nodeValue = "This should have an effect";
103 newValue = newNode.nodeValue;
H A Dhc_nodevalue05.js98 newValue = newNode.nodeValue;
101 newNode.nodeValue = "This should have no effect";
103 newValue = newNode.nodeValue;
H A Dhc_nodevalue06.js96 newValue = newNode.nodeValue;
99 newNode.nodeValue = "This should have no effect";
101 newValue = newNode.nodeValue;
H A Dhc_documentgetdoctype.js90 var nodeValue;
133 nodeValue = docType.nodeValue;
135 assertNull("nodeValue",nodeValue);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_nodevalue01.js98 newValue = newNode.nodeValue;
101 newNode.nodeValue = "This should have no effect";
103 newValue = newNode.nodeValue;
H A Dhc_nodevalue02.js98 newValue = newNode.nodeValue;
101 newNode.nodeValue = "This should have an effect";
103 newValue = newNode.nodeValue;
H A Dhc_nodevalue05.js98 newValue = newNode.nodeValue;
101 newNode.nodeValue = "This should have no effect";
103 newValue = newNode.nodeValue;
H A Dhc_nodevalue06.js96 newValue = newNode.nodeValue;
99 newNode.nodeValue = "This should have no effect";
101 newValue = newNode.nodeValue;
H A Dhc_documentgetdoctype.js90 var nodeValue;
133 nodeValue = docType.nodeValue;
135 assertNull("nodeValue",nodeValue);
/external/webkit/LayoutTests/dom/html/level2/core/
H A Dhc_nodedocumentfragmentnormalize1.js90 var nodeValue;
107 nodeValue = txtNode.nodeValue;
109 assertEquals("normalizedNodeValue","foobar",nodeValue);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
H A Dhc_nodedocumentfragmentnormalize1.js90 var nodeValue;
107 nodeValue = txtNode.nodeValue;
109 assertEquals("normalizedNodeValue","foobar",nodeValue);
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DhtmlMathML.js18 newnode.setAttribute(node.attributes[i].nodeName,node.attributes[i].nodeValue);
22 var st = node.childNodes[i].nodeValue;
58 str += node.nodeValue;
63 if (node.attributes[j].nodeValue!="italic" &&
64 node.attributes[j].nodeValue!="" &&
65 node.attributes[j].nodeValue!="inherit" &&
66 node.attributes[j].nodeValue!=undefined) {
68 "\""+node.attributes[j].nodeValue+"\"";
/external/webkit/Source/WebCore/xml/
H A DXPathUtil.cpp51 return node->nodeValue();
59 const String& nodeValue = n->nodeValue(); local
60 result.append(nodeValue.characters(), nodeValue.length());

Completed in 423 milliseconds

1234567891011