blob: bb7eaf139c3ce8da4495a6864d8b3ac2602a7b02 [file] [log] [blame]
<!DOCTYPE html>
<style>
.grid {
display: inline-grid;
border: thick solid;
height: 50px;
width: 50px;
margin: 50px;
}
.i1 {
color: cyan;
background: magenta;
font-size: 100px;
}
.auto { overflow: auto; }
.hidden { overflow: hidden; }
</style>
<p>This test checks that implied minimum size of grid items is only applied if overflow is visible.</p>
<p>The test passes if in the first grid the item overflows, in the second one it has scrollbars,
and in the third one the item doesn't overflow but it doesn't have scrollbars.</p>
<div class="grid">
<div class="i1">X</div>
</div>
<div class="grid">
<div class="i1 auto">X</div>
</div>
<div class="grid">
<div class="i1 hidden">X</div>
</div>