blob: 8a7e2bcc771635ef8bb8ab11583397703392310d [file] [log] [blame]
<!DOCTYPE HTML>
<style>
.scroller {
width: 100px;
height: 100px;
overflow: auto;
border: 1px solid black;
}
.scrolled {
width: 40px;
height: 40px;
background: green;
}
.fixed {
width: 100px;
height: 30px;
position: fixed;
background: blue;
-webkit-backface-visibility: hidden;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsTextWithPixelResults();
</script>
<div class="fixed"></div>
<div class="scroller">
<div class="scrolled"></div>
<div class="scrolled"></div>
<div class="scrolled"></div>
<div class="scrolled"></div>
</div>