In Chrome and Safari browsers (and possibly other Webkit-based browsers), you can still enter content content even after the div loses focus.
I built a simple example to illustrate this problem: http://jsfiddle.net/yfcsU/3/
The example has two elements: a div with contenteditable="true" and a link that will trigger a blur event on the contenteditable div when clicked.
When a link is clicked, the content-accessible div loses focus, but you can still enter the div, and any keystroke will make it focus again.
In Firefox, this behavior is different from where it works as expected: clicking on the link will cause the contenteditable div to stop accepting input.
In Webkit, is there a way to make a content-accessible div stop accepting input after it loses focus without disconnecting the contenteditable on the div?
dcro
source share