Lines Matching refs:xmlNode
100 FCKXHtml._AppendAttribute = function( xmlNode, attributeName, attributeValue ) argument
120 xmlNode.attributes.setNamedItem( oXmlAtt ) ;
126 FCKXHtml._AppendChildNodes = function( xmlNode, htmlNode, isBlockElement ) argument
132 this._AppendNode( xmlNode, oNode ) ;
140 FCKDomTools.TrimNode( xmlNode ) ;
144 var lastChild = xmlNode.lastChild ;
146 this._AppendEntity( xmlNode, this._NbspEntity ) ;
151 if ( xmlNode.childNodes.length == 0 )
155 this._AppendEntity( xmlNode, this._NbspEntity ) ;
156 return xmlNode ;
159 var sNodeName = xmlNode.nodeName ;
168 xmlNode.appendChild( this.XML.createTextNode('') ) ;
171 return xmlNode ;
174 FCKXHtml._AppendNode = function( xmlNode, htmlNode ) argument
192 return FCKXHtml._AppendNode( xmlNode, this.XML.createTextNode( val ) ) ;
198 return FCKXHtml._AppendNode( xmlNode, FCK.GetRealElement( htmlNode ) ) ;
239 FCKXHtml._AppendAttributes( xmlNode, htmlNode, oNode, sNodeName ) ;
247 oNode = oTagProcessor( oNode, htmlNode, xmlNode ) ;
254 xmlNode.appendChild( oNode ) ;
261 return this._AppendTextNode( xmlNode, htmlNode.nodeValue ) ;
262 return this._AppendTextNode( xmlNode, htmlNode.nodeValue.ReplaceNewLineChars(' ') ) ;
271 try { xmlNode.appendChild( this.XML.createComment( htmlNode.nodeValue ) ) ; }
277 …xmlNode.appendChild( this.XML.createComment( "Element not supported - Type: " + htmlNode.nodeType …
289 FCKXHtml._AppendEntity = function( xmlNode, entity ) argument
291 xmlNode.appendChild( this.XML.createTextNode( '#?-:' + entity + ';' ) ) ;