blob: 5aa822814596b5c205a2257d9d2298f3a203c3d2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name=viewport content="width=device-width">
<style>
.scrollable {
height: 200px;
width: 100px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
.container {
height: 100px;
overflow: hidden;
position: relative;
background-color: green;
}
.indicator {
margin-top: 100px;
height: 100px;
background-color: red;
}
</style>
<script>
if (window.internals)
window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
</script>
</head>
<body>
<!-- Should see a green square (no red). -->
<div class="scrollable">
<div class="container">
<div class="indicator"></div>
</div>
</div>
</body>
</html>