Ticket #3737: 3737.patch

File 3737.patch, 709 bytes (added by Garry Yao, 15 years ago)
  • _source/core/htmlparser.js

     
    171171                                // Opening tag
    172172                                if ( ( tagName = parts[ 3 ] ) )
    173173                                {
     174                                        tagName = tagName.toLowerCase();
    174175                                        var attribs = {},
    175176                                                attribMatch,
    176177                                                attribsPart = parts[ 4 ],
     
    190191                                                }
    191192                                        }
    192193
    193                                         this.onTagOpen( tagName.toLowerCase(), attribs, selfClosing );
     194                                        this.onTagOpen( tagName, attribs, selfClosing );
    194195
    195196                                        // Open CDATA mode when finding the appropriate tags.
    196197                                        if ( !cdata && CKEDITOR.dtd.$cdata[ tagName ] )
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy