blob: 9fca3fe1c9e3a02004b21d295861418b1b8a2409 [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.
<iframe style="position: relative; width: 600px; height: 500px; border: 0px solid black;" srcdoc="<!DOCTYPE html>
<head>
</head>
<body>
<div style='position: absolute; top: 0px; left: 0px; width: 2000px; height: 2000px'>
<div style='position: absolute; width: 485px; height: 100px; background: blue;'></div>
<div style='position: absolute; left: 485px; width: 100px; height: 100px; background: green;'></div>
</div>
</body>
</html">
</body>
</html>