summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/paint-invalidation-with-opacity.html
blob: c26f06f1015460647c7cbcef8ee9ec4f773f4e35 (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<div id="target" style="width: 100px; height: 100px; background: lightblue"></div>
<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
    document.getElementById('target').style.opacity = 0.5;
}
runRepaintTest();
</script>