chromium/third_party/blink/web_tests/external/wpt/css/css-lists/li-with-overflow-hidden-change-list-style-position-001-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Lists: test inside and outside switch</title>

<p>The test passes if the first li is inside and the second one is outside.</p>

<ul>
  <li style="list-style-position: inside;">
    <div style="overflow:hidden;">
      outside to inside
    </div>
  </li>
</ul>

<ul>
  <li style="list-style-position: outside;">
    <div style="overflow:hidden;">
      inside to outside
    </div>
  </li>
</ul>