blob: ef6d3f77132d3a396995039318a2aaa76bdf5ed9 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.internals) {
internals.settings.setUserInterfaceDirectionPolicy("System");
internals.settings.setSystemLayoutDirection("RTL");
}
</script>
<script>
if (window.internals)
internals.setUsesOverlayScrollbars(true);
</script>
</head>
<body style="margin: 0px;">
This test makes sure that overlay scrollbars don't push contents over.
<div style="width: 370px; height: 400px; overflow: hidden">
<div style="width: 400px; height: 400px; overflow-x: hidden; overflow-y: auto; position: relative; left: -15px; background: blue;">
<div style="background: green;">This is some text and each pixel should match exactly.</div>
<div style="position: absolute; left: 0px; top: 0px; width: 1px; height: 2000px;"></div>
</div>
</div>
</body>
</html>