Chrome 38 bug with backface-visibilty

This regression in Chrome 38 prevents certain render layers from being rendered correctly in some cases. In order to reproduce, be sure to clear the browser cache first. After "run" you should see the text "You can see me", but above of it, there is just a single underline - the text of the link is not visible until after you force a repaint.

by yGuy

HTML

<body>
<div class="head-wrapper">
        <header>
         <a href="#">Can you see me?</a>
        </header>
</div>

<div class="content">
    You can see me.
</div>
</body>

CSS

@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed);
header {
  font-family: 'Roboto Condensed';
}
body { 
	-webkit-backface-visibility: hidden;
}
.head-wrapper {
  position: absolute;
  z-index: 100000;
  top: 0;
}
.content {
  margin-top: 100px;
}