blob: 0d1362210f2077069a29b3366ab96024c7a1c3d0 [file] [log] [blame]
<!DOCTYPE HTML>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
document.getElementById('container').style.alignContent = 'flex-end';
}
onload = runRepaintAndPixelTest;
</script>
<style>
.container {
width: 200px;
height: 300px;
background-color: blue;
}
.item {
background-color: green;
border: solid thin blue;
}
</style>
There should be no invalidations when align-content changes on a non-flex container.
<div id="container">
<div class="item">
<div style="height: 100px"></div>
</div>
<div class="item">
<div style="height: 150px"></div>
</div>
</div>