blob: 784661e1de6ce57436ef7cc9ce5370247670c005 (
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: scroll;
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>
|