Question

I use Google Drive API for adding ability to edit user uploaded files by sending them to user's Drive and opening a link in iFrame. It was working cool, till some recent updates on Drive. After that updates iFrame start to "blink" when focused and have a cursor moved in it. But, this only happens in Chrome.

UPD: I've discovered that it happens because of transition: opacity .13s ease-in 0; applied to "kix-cursor-caret".

Was it helpful?

Solution

Try adding this CSS to your page, as suggested here:

body {
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(1);
}

I've had the same problem for CSS3 animations within iframes, and this CSS solved it. There's currently an open Chromium bug report about iframe flickering, which you might want to follow if the above doesn't work.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top