Lines Matching refs:FCKXHtml

25 FCKXHtml._GetMainXmlString = function()
30 FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node, nodeName )
85 FCKXHtml.TagProcessors['meta'] = function( node, htmlNode )
97 FCKXHtml._AppendAttribute( node, 'http-equiv', sHttpEquiv ) ;
105 FCKXHtml.TagProcessors['font'] = function( node, htmlNode )
108 node = FCKXHtml.XML.createDocumentFragment() ;
110 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
116 FCKXHtml.TagProcessors['input'] = function( node, htmlNode )
119 FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ;
122 FCKXHtml._AppendAttribute( node, 'value', htmlNode.value ) ;
125 FCKXHtml._AppendAttribute( node, 'type', 'text' ) ;
131 FCKXHtml.TagProcessors['option'] = function( node, htmlNode )
134 FCKXHtml._AppendAttribute( node, 'selected', 'selected' ) ;
136 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
142 FCKXHtml.TagProcessors['area'] = function( node, htmlNode )
148 FCKXHtml._AppendAttribute( node, 'coords', sCoords ) ;
155 FCKXHtml._AppendAttribute( node, 'shape', sShape.toLowerCase() ) ;
161 FCKXHtml.TagProcessors['label'] = function( node, htmlNode )
164 FCKXHtml._AppendAttribute( node, 'for', htmlNode.htmlFor ) ;
166 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
171 FCKXHtml.TagProcessors['form'] = function( node, htmlNode )
174 FCKXHtml._AppendAttribute( node, 'accept-charset', htmlNode.acceptCharset ) ;
181 FCKXHtml._AppendAttribute( node, 'name', nameAtt.value ) ;
183 node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ;
189 FCKXHtml.TagProcessors['textarea'] = FCKXHtml.TagProcessors['select'] = function( node, htmlNode )
192 FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ;
194 node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
200 FCKXHtml.TagProcessors['div'] = function( node, htmlNode )
203 FCKXHtml._AppendAttribute( node, 'align', htmlNode.align ) ;
205 node = FCKXHtml._AppendChildNodes( node, htmlNode, true ) ;