Ticket #3737: 3737.patch
File 3737.patch, 709 bytes (added by , 14 years ago) |
---|
-
_source/core/htmlparser.js
171 171 // Opening tag 172 172 if ( ( tagName = parts[ 3 ] ) ) 173 173 { 174 tagName = tagName.toLowerCase(); 174 175 var attribs = {}, 175 176 attribMatch, 176 177 attribsPart = parts[ 4 ], … … 190 191 } 191 192 } 192 193 193 this.onTagOpen( tagName .toLowerCase(), attribs, selfClosing );194 this.onTagOpen( tagName, attribs, selfClosing ); 194 195 195 196 // Open CDATA mode when finding the appropriate tags. 196 197 if ( !cdata && CKEDITOR.dtd.$cdata[ tagName ] )