blob: 242f848cd66b9fd7eb7bf041df0a5e0fc0621c07 [file] [log] [blame]
<!-- Based on fast/repaint/overflow-flipped-writing-mode-block.html -->
<script src="resources/paint-invalidation-test.js"></script>
<script>
onload = runPaintInvalidationTest;
window.expectedPaintInvalidationObjects = [
"LayoutBlockFlow DIV id='target'",
];
function paintInvalidationTest()
{
document.getElementById("target").style.visibility = "hidden";
}
</script>
<div style="height: 100px; width: 100px; background-color: red; -webkit-writing-mode: horizontal-bt;">
<div style="height: 25px;">
<div style="height: 100px; background-color: green;"></div>
</div>
</div>
<div id="target" style="height: 50px; width: 100px; background-color: red; margin-top: -100px;"></div>