Home | History | Annotate | Download | only in xml

Lines Matching refs:nodeValue

115         if (child.nodeType == Node.TEXT_NODE && isShort(child.nodeValue) && !child.nextSibling)
134 line.appendChild(createText(child.nodeValue));
156 if (isShort(node.nodeValue)) {
158 line.appendChild(createComment('<!-- ' + node.nodeValue + ' -->'));
164 collapsible.expanded.content.appendChild(createComment(node.nodeValue));
176 if (isShort(node.nodeValue)) {
178 line.appendChild(createText('<![CDATA[ ' + node.nodeValue + ' ]]>'));
184 collapsible.expanded.content.appendChild(createText(node.nodeValue));
196 if (isShort(node.nodeValue)) {
198 line.appendChild(createComment('<?' + node.nodeName + ' ' + node.nodeValue + '?>'));
204 collapsible.expanded.content.appendChild(createComment(node.nodeValue));
216 parentElement.appendChild(createText(node.nodeValue));