blob: 3fa6ac872cf670cfc315515bcd0e916e2f2f21a4 [file] [log] [blame]
<!DOCTYPE HTML>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
document.getElementById('container').style.alignContent = 'center';
}
onload = runRepaintAndPixelTest;
</script>
<style>
#container {
display: flex;
align-items: flex-start;
width: 200px;
height: 300px;
background-color: red;
}
.item {
background-color: green;
border: solid thin blue;
width: 100px;
height: 300px;
}
</style>
<p style="height: 20px">There should be no invalidations because align-content style change causes no visual change.</p>
<div id="container">
<div class="item"></div>
<div class="item"></div>
</div>