chromium/third_party/blink/web_tests/fast/block/rtl-abs-pos-container-with-scrollbar-expected.html

<!DOCTYPE html>
<style>
  #outer {
    direction: rtl;
    width: 200px;
    height: 200px;
    overflow-y: scroll;
  }
  #inner {
    width: 100%;
    height: 300px;
    background: green;
  }
  #absolute {
    width: 100px;
    height: 100px;
    background: blue;
    position: absolute;
  }
</style>

<div id="outer">
  <div id="inner">
    <div id="absolute"></div>
  </div>
</div>