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