tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

list-marker-with-lineheight-and-overflow-hidden-001.html (707B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Lists: test list with overflow:hidden and line-height firstchild</title>
      4 <link rel=help href="https://www.w3.org/TR/CSS22/generate.html#lists">
      5 <link rel=match href="list-marker-with-lineheight-and-overflow-hidden-001-ref.html">
      6 <!-- https://bugs.chromium.org/p/chromium/issues/detail?id=344941 -->
      7 
      8 <p>This test passes if there is a marker for each li and followed by "text" in the same line.</p>
      9 
     10 <ul>
     11  <li>
     12    <div style="overflow:hidden; line-height:100px;">
     13      <span>text</span>
     14    </div>
     15  </li>
     16 </ul>
     17 
     18 <ul>
     19  <li style="list-style-image: url(resources/white.gif);">
     20    <div style="overflow:hidden; line-height:100px;">text</div>
     21  </li>
     22 </ul>