chromium/third_party/blink/web_tests/fast/lists/list-marker-avoid-float-6.html

<!DOCTYPE html>
<style>
.float {
  float: left;
  width: 100%;
  background: lightgray;
}
</style>
<p>crbug.com/784793: The list marker should be to the left not the right.</p>
<div style="direction:rtl">
  <div class="float">float</div>
  <ul>
    <li>
    <script>
      document.body.offsetTop;
    </script>
      a
    </li>
  </ul>
</div>