grid-container-scrollbars-sizing-001-ref.html (351B)
1 <!DOCTYPE html> 2 <style> 3 html { 4 overflow-x: scroll; 5 } 6 .grid { 7 float: left; 8 overflow-y: scroll; 9 overflow-x: scroll; 10 } 11 .item { 12 background: lime; 13 width: 100px; 14 height: 100px; 15 } 16 </style> 17 <p>This test passes if you see a 100x100px green box and scrollbars are disabled.</p> 18 <div class="grid"> 19 <div class="item">item</div> 20 </div>