tor-browser

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

list-style-position-001-ref.html (805B)


      1 <!DOCTYPE HTML>
      2 <meta charset="utf-8">
      3 <title>CSS Reference Case</title>
      4 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
      5 <style>
      6  body {
      7    /* Increase left margin to ensure we can see the list item's marker. */
      8    margin-left: 50px;
      9  }
     10  .wrapper {
     11    border: 2px solid teal;
     12    width: max-content;
     13    margin-bottom: 2px;
     14  }
     15  ul {
     16    padding: 0;
     17    margin: 0;
     18  }
     19 </style>
     20 <div class="wrapper">
     21  <!-- For this reference case, we just add a <ul> wrapper, which is sufficient
     22       to elicit the correct "outside" behavior in browsers that had the bug
     23       that we're testing here. -->
     24  <ul>
     25    <li>unspecified</li>
     26    <li>outside</li>
     27    <li>initial</li>
     28    <li>inherit</li>
     29    <li>unset</li>
     30    <li>revert</li>
     31    <li>revert-layer</li>
     32  </ul>
     33 </div>