blob: 4c7ee7cac2a3784bca2d0a6a7566451f8fe81afa (
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
28
29
30
|
<style type="text/css">
.first {
height:400px;
background-color: red;
transform: translateZ(0);
}
.second {
left: 100px;
bottom: 0px;
background-color:blue;
width:7px;
height:562px;
position: absolute; transform: translateX(0)
}
.outer {
overflow: scroll;
/* FIXME: make this height: 500px to expose another bug */
height: 600px;
width: 500px;
position: absolute;
bottom:10px;
background-color: grey;
}
</style>
<div class="outer">
<div class="first"> </div>
<div class="second"> </div>
</div>
|