fune/layout/reftests/async-scrolling/position-fixed-in-scroll-container-ref.html
Botond Ballo d9675e8e87 Bug 1201889 - Reftest. r=mstange
--HG--
extra : rebase_source : 8cbd3c866fbaca186aa429f8151713f59a90c0ae
extra : source : c14e042a460467a78f48294ebbf69c1141f2b42d
2015-09-28 18:50:28 -04:00

40 lines
475 B
HTML

<!DOCTYPE html>
<html>
<style>
body {
height: 10000px;
}
.outer-opacity {
opacity: 0.8;
}
.scrollbox {
border: 1px solid black;
width: 200px;
height: 400px;
overflow: hidden;
}
.inner-opacity {
height: 1000px;
opacity: 0.8;
}
.fixed {
background: blue;
width: 100px;
height: 100px;
}
</style>
<div class="outer-opacity">
<div class="scrollbox">
<div class="inner-opacity">
<div class="fixed"></div>
</div>
</div>
</div>
</html>