Ticket #9523: ckeditor.patch

File ckeditor.patch, 651 bytes (added by Branden Hamilton, 11 years ago)

patch against 3.6.4

  • core/dom/element.js

    diff --git a/core/dom/element.js b/core/dom/element.js
    index 84498ba..914d472 100644
    a b CKEDITOR.tools.extend( CKEDITOR.dom.element.prototype, 
    14251425                                        parent.$.clientWidth && parent.$.clientWidth < parent.$.scrollWidth
    14261426                                        || parent.$.clientHeight && parent.$.clientHeight < parent.$.scrollHeight;
    14271427
    1428                                 if ( overflowed )
     1428                                // Skip body element, which will report wrong clientHeight when containing
     1429                                // floated content. (#9523)
     1430                                if ( overflowed && !parent.is( 'body' ) )
    14291431                                        this.scrollIntoParent( parent, alignToTop, 1 );
    14301432
    14311433                                // Walk across the frame.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy