summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-vertical-scrollbar.html
blob: 59fff1b95508e93d808fc71d1083bd9325970abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<title>Reference</title>
<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com">
<style>
    .box {
       width: 100px;
       height: 100px;
       background-color: grey;
       overflow: auto;
    }
    .item {
       width: 50px;
       height: 150px;
    }
</style>
<p>The test passes if you see a grey square below and only the vertical scrollbar is visible.</p>
<div class="box"><div class="item"></div></div>