li-with-overflow-hidden-change-list-style-position-001-ref.html (446B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Lists: test inside and outside switch</title> 4 5 <p>The test passes if the first li is inside and the second one is outside.</p> 6 7 <ul> 8 <li style="list-style-position: inside;"> 9 <div style="overflow:hidden;"> 10 outside to inside 11 </div> 12 </li> 13 </ul> 14 15 <ul> 16 <li style="list-style-position: outside;"> 17 <div style="overflow:hidden;"> 18 inside to outside 19 </div> 20 </li> 21 </ul>