summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scrolling/xul-scrollbar-iterate.html
blob: 816218c3dca265f4d833048630ae8b381f523b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE HTML>
<title>XUL scrollbar testcase</title>
<style>

html { overflow: hidden }

div.outer {
  display: -moz-box;
  overflow: auto;
  width: 200px;
  height: 100px;
  background: yellow;
}

div.inner {
  width: 300px;
  height: 100px;
  min-width: 300px;
  min-height: 100px;
  background: aqua;
}
</style>

<div class="outer">
  <div class="inner">
  </div>
</div>