I have a contentEditable div on which if a cursor is placed it's displayed as a huge cursor!
Here's the code:
<html>
<head></head>
<body >
<div style="position:absolute; top:2px; left:30px; right:0px; bottom: 0px; height:100%;">
<div contentEditable="true" style=" color:#333333; height:100%; width:100%; cursor:text;" spellcheck="false"></div>
</div>
</body>
</html>
You can see it here: http://jsfiddle.net/yW62h/
Here's what it looks like in my browser (FFX3.5)
This problem also appears in FFX3.6 and 4.0b6
Is this a bug or am I doing something wrong here?