Interesting one, this. I have the following JS code, which I'm displaying in a textarea.
var drinks = ['coffee', 'tea', 'Ribena', 'Vimto', 'ginger beer', 'hot chocolate'];
Where wrapping is required, IE breaks BEFORE the first square bracket (i.e. the start of the array, but the actual JS code isn't important here), whereas other browsers break WITHIN the square brackets.
The latter seems correct, since there are spaces (i.e. breakable points) within the square brackets.
There is no funky word-wrap or white-space CSS going on. Is there anything I can do about this? Thanks in advance.
:P– Šime Vidas Jan 24 at 13:29