blob: d80d1e247f000158c8d416ab2e6f67667fe096ba [file] [log] [blame]
<!DOCTYPE html>
<script>
if (window.internals)
internals.settings.setMockScrollbarsEnabled(true);
onload = function() {
container.scrollLeft = 2000;
};
</script>
There should be a green square.
<div id="container" style="width: 200px; height: 200px; overflow: scroll">
<div style="width: 2000px">
<div style="width: 100px; height: 100px; background: green; float: right"></div>
</div>
</div>