tags:

views:

44

answers:

1

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) alt text

This problem also appears in FFX3.6 and 4.0b6

Is this a bug or am I doing something wrong here?

A: 

It's a Firefox bug https://bugzilla.mozilla.org/show_bug.cgi?id=537475 :(

instantsetsuna