blob: 4370c004e0c9dca382fcf0285612eb50c7bb7a20 [file] [log] [blame]
<!DOCTYPE html>
<html>
<!--
| Absolutely positioned elements in a scroll container that is positioned
| should be scrolled.
| https://www.w3.org/TR/CSS21/visufx.html
-->
<head>
<style>
body {
font-family: Roboto;
font-size: 16px;
}
.overflow-scroll {
width: 150px;
height: 100px;
overflow: scroll;
position: relative;
background-color: #00FF00;
}
.content {
width: 50px;
height: 50px;
position: absolute;
background-color: #0000FF;
}
</style>
<script>
if (window.testRunner) {
window.testRunner.waitUntilDone();
}
window.onload = function() {
document.getElementById('scroller').scrollLeft = 25;
if (window.testRunner) {
window.testRunner.notifyDone();
}
}
</script>
</head>
<body>
<div id="scroller" class="overflow-scroll">
<div class="content" style="transform: translateX(0px)"></div>
<div class="content" style="transform: translateX(75px)"></div>
<div class="content" style="transform: translateX(150px)"></div>
</div>
</body>
</html>