blob: 1403277afe5429418321c822aaf61c41832b933b [file] [log] [blame]
<!DOCTYPE html>
<style>
.first {
display: inline-block;
width: 50px;
background: lime;
}
.second {
display: inline-block;
width: 50px;
background: cyan;
}
</style>
<p>This test checks that flex items text and background are not interleaved.</p>
<p>The test passes if you see "Item2" on top of "VeryLongItem1".</p>
<div>
<div class="first">VeryLongItem1</div><div class="second">Item2</div>
</div>