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