Based on Jedidiah's answer, I improved the solution using requestAnimationFrame to constantly switch the class name in the input field regardless of keyboard activity.
http://jsfiddle.net/wBpNq/3/
var redraw = function() { $("#test1, #test2").toggleClass("force_redraw"); window.webkitRequestAnimationFrame(redraw); } window.webkitRequestAnimationFrame(redraw);
This fixes the problem at the moment, including making the cursor blink again, although when / if you start typing, the cursor stops blinking.
Rahul source share