You are right -- the editor seems to be adjusting my selected text based on the fact that the second case below seems to be in mixed case
In both cases I selected the text with the mouse from right to left
In the first the "nice text in one case" remained selected after a right click
In the second only the "aaaa" remained selected after a right click
Original --
Code:
<body>
<p>original = nice text in one case</p>
<p>after = nice text in one case</p>
<p>original = aaaa bbbb CCCC dddd eeeEEE FFFfff</p>
<p>after = aaaa bbbb CCCC dddd eeeEEE FFFfff</p>
</body>
After UPPER CASE
Code:
<body>
<p>original = nice text in one case</p>
<p>after = NICE TEXT IN ONE CASE</p>
<p>original = aaaa bbbb CCCC dddd eeeEEE FFFfff</p>
<p>after = AAAA bbbb CCCC dddd eeeEEE FFFfff</p>
</body>
Is the editor supposed to do that, or is there a setting I'm missing?