tor-browser

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

420351-1.html (435B)


      1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html>
      3 <head>
      4 <title>Testcase bug - List item marker takes up room now with list-style-type: none in strict mode</title>
      5 <style>
      6 li{
      7  list-style-type: none;
      8  list-style-position: inside;
      9  border: 1px solid red;
     10 }
     11 div {
     12  border: 1px solid black;
     13 }
     14 </style></head>
     15 <body>
     16 
     17 <ul><li><div>text</div></li></ul>
     18 </body>
     19 </html>