summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/ManualTests/inline-repaint-container.html
blob: e1f19c96e6948dec389dc191814e6fb8a4de1a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div style="-webkit-transform: translatez(0)">
</div>
<div style="position: relative;">
    <span style="position: relative; z-index: 10; top: 40px; left: 30px;">
        <span style="position: relative; top: 50px; font: 60px ahem; color: red;" id="target">X</span>
    </span>
</div>
<script>
    setTimeout(function() {
        document.getElementById("target").style.color = "green";
    }, 0);
</script>