blob: 6c549f10d7b62556ac572eb005f691151ec8771c [file] [log] [blame]
<html>
<head>
<style>
div.box {
height: 100px;
width:100px;
background-color:green;
display: -moz-box;
display: -webkit-box;
display: box;
overflow:auto;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
border: 2px solid olive;
}
</style>
</head>
<body>
<p>You should see a 100x100 olive-bordered green square below with a horizontal scrollbar. The scrollable area should all be green
and should be about 1000px wide. If you do not see a scrollbar, then the test has failed.
</p>
<div class="box"><div style="width:1000px;"></div></div>
</body>
</html>