summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/overflow-flipped-writing-mode-block.html
blob: b170cf4f97a824b8dfc5ed9f58edd19821cb1230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script src="resources/text-based-repaint.js"></script>
<script>
    onload = runRepaintTest;

    function repaintTest()
    {
        document.getElementById("target").style.visibility = "hidden";
    }
</script>
<div style="height: 100px; width: 100px; background-color: red; writing-mode: vertical-rl;">
    <div style="width: 25px;">
        <div style="width: 100px; background-color: green;"></div>
    </div>
</div>
<div id="target" style="width: 50px; height: 100px; background-color: red; margin-left: -100px;"></div>