Lines Matching refs:node

28 FCKXHtml.GetXHTML = function( node, includeNode, format )  argument
30 FCKDomTools.CheckAndRemovePaddingNode( node.ownerDocument, FCKConfig.EnterMode ) ;
55 this._AppendNode( this.MainNode, node ) ;
57 this._AppendChildNodes( this.MainNode, node, false ) ;
96 FCKDomTools.EnforcePaddingNode( FCKTools.GetElementDocument( node ), FCKConfig.EnterMode ) ;
315 img : function( node, htmlNode ) argument
318 if ( ! node.attributes.getNamedItem( 'alt' ) )
319 FCKXHtml._AppendAttribute( node, 'alt', '' ) ;
323 FCKXHtml._AppendAttribute( node, 'src', sSavedUrl ) ;
325 return node ;
328 a : function( node, htmlNode ) argument
336 FCKXHtml._AppendAttribute( node, 'href', sSavedUrl ) ;
344 FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ;
347 node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
349 return node ;
352 script : function( node, htmlNode ) argument
355 if ( ! node.attributes.getNamedItem( 'type' ) )
356 FCKXHtml._AppendAttribute( node, 'type', 'text/javascript' ) ;
358 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( htmlNode.text ) ) ) ;
360 return node ;
363 style : function( node, htmlNode ) argument
366 if ( ! node.attributes.getNamedItem( 'type' ) )
367 FCKXHtml._AppendAttribute( node, 'type', 'text/css' ) ;
373 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( cssText ) ) ) ;
375 return node ;
378 pre : function ( node, htmlNode ) argument
385 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( '\r\n' + val ) ) ) ;
387 FCKXHtml._AppendNode( node, item ) ;
389 return node ;
392 title : function( node, htmlNode ) argument
394 node.appendChild( FCKXHtml.XML.createTextNode( FCK.EditorDocument.title ) ) ;
396 return node ;
400 ol : function( node, htmlNode, targetNode ) argument
417 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
419 return node ;
422 span : function( node, htmlNode ) argument
428 node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
430 return node ;
435 iframe : function( node, htmlNode ) argument
446 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( sHtml ) ) ) ;
448 return node ;
451 body : function( node, htmlNode ) argument
453 node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
455 node.removeAttribute( 'spellcheck' ) ;
456 return node ;