I'm experiencing an issue with two cursors appearing in Windows Chrome version 31.0.1650.57. The two cursors are grab and a default arrow. I have applied the following CSS:
CSS
div {
width:200px;
height:200px;
background-color:maroon;
border:1px solid #000;
cursor:grab;
cursor:-moz-grab;
cursor:-webkit-grab;
}
Here is the Fiddle link - http://jsfiddle.net/jL9ft/
If you have any insights on what might be causing this issue, please let me know. Thank you.