blob: 63a866d350a13b532564a0cad8577fe8fcf1787d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.internals) {
internals.settings.setUserInterfaceDirectionPolicy("System");
internals.settings.setSystemLayoutDirection("RTL");
}
</script>
</head>
<body style="margin: 0px;">
This test makes sure that position-sticky obeys RTL scrollbars when positioning.
<div style="position: absolute; top: 100px; left: 0px; width: 2000px; height: 2000px;">
<div style="position: absolute; left: 0px; top: 0px; width: 685px; height: 100px; background: blue;"></div>
<div style="position: absolute; left: 685px; top: 0px; width: 100px; height: 100px; background: green;"></div>
</div>
</body>
</html>