I'm having very different behaviors with nested contenteditable="false" elements within a parent contenteditable="true:
<pre>
<div contenteditable="true">
<span>I'm supposed to be editable</span>
<p contenteditable="false">I'm NOT supposed to be editable.<br>Neither should I.</p>
<span contenteditable="false">I'm NOT supposed to be editable.</span>
</div>
</pre>
This fiddle exemplifies how two elements that should not be editable are in fact editable with Internet Explorer 11 but not Google Chrome. What gives?
I have seen some people applying a strange workaround by setting them to "true", which indeed works for IE, but has the opposite effect on Google Chrome (as it should).
The answer for this similar question is dated from 2013. Three years after, is this still the current scenario ?
Edit: This fiddle almost achieves the wanted result. However, if you set the cursor to "Don't move.." and move it to the left until you reach the non-editable span, you will gain focus and able to edit it. Any ideas to avoid this behavior ?
Affected browser: Internet Explorer 11