Chrome bug: iframe rendering lines on screen when scrolling up

google-chrome, iframe

Solution

Removing the `background-color`:

body {
...
background-color: #fff; 
}

in the CSS of the HTML document which is rendered into the `iFrame` did solve the issue in my case.

Problem

bug here: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-bugs/eUfzp3UJDwo%5B1-25%5D just encountered this problem, streaking up my screen on chrome, but not on firefox, or IE. anyone on a mac seen this?

Original source