blob: e2d6a39a28f6f9748eb6ca5455dc56a1e685f3bd [file] [log] [blame]
<!DOCTYPE html>
<style>
html {
overflow-x: scroll;
}
.grid {
width: fit-content;
overflow-y: scroll;
overflow-x: scroll;
}
.item {
background: lime;
width: 100px;
height: 100px;
}
</style>
<p>This test passes if you see a 100x100px green box and scrollbars are disabled.</p>
<div class="grid">
<div class="item">item</div>
</div>