blob: 2961a6abfa47a0d48114f1e2b0e8db058353b61c [file] [log] [blame]
<!DOCTYPE HTML>
<script src="resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
document.getElementById('container').style.alignContent = 'center';
}
onload = runRepaintTest;
</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>