blob: 151a3c643c0d209ea3c1545e96870f36b25d2846 [file] [log] [blame]
<!DOCTYPE HTML>
<style>
.flex {
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;
align-self: stretch;
}
</style>
<p style="height: 20px">There should be no invalidations because align-self style change causes no visual change.</p>
<div class="flex">
<div class="item"></div>
<div class="item"></div>
</div>