Bug
The length of the editor should increase and the width should not change
Screenshot:

The width of the container (div with id='cke_editor1') is set to 0px and becomes unusable
Screenshot:

4.14.1 has caused this issue to surface: https://github.com/ckeditor/ckeditor4/pull/4010/files?file-filters%5B%5D=.jswidth = convertCssUnitToPx( width ); was introduced, width was an empty string "" and so the next line outer.setSize( 'width', width, true ); did not actually set the style because width was not a number.width is a number (0), it calculates the width size and adjusts based on padding. size gets set to 0 - 2 = -2px and setStyle() is called. setStyle() doesn't set a negative width so it's a no-op.size gets set to 0px. setStyle() is called and the width of the container is then set to 0px.4.14.1 and 4.15.0autogrowHello @vbhargavmbis, thanks for reporting and such detailed analysis of this issue :+1:
This might not need to be said, but this likely also affects the resizer arrow in bottom right if enabled. I am having this exact issue when attempting to use the resizer arrow to extend the height. I do not have the autoGrow plugin, however.
This might not need to be said, but this likely also affects the resizer arrow in bottom right if enabled. I am having this exact issue when attempting to use the resizer arrow to extend the height. I do not have the autoGrow plugin, however.
@Codewow could you provide reproduction steps for your issue? I tried to reproduce it (see this codepen) but without success.
@vbhargavmbis the quick workaround for this issue is to set editor width explicitly via config.width.
Fixed in #4307.