tor-browser

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

outside-marker-paint-order-ref.html (711B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <meta charset="utf-8">
      8  <title>CSS Pseduo: painting order of outside ::marker box</title>
      9  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
     10  <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     11  <style>
     12 li {
     13  list-style-type: none;
     14  margin-left: 100px;
     15  text-indent: -100px;
     16  font: 20px/1 Ahem;
     17 }
     18 
     19 x { color: grey; }
     20 
     21  </style>
     22 </head>
     23 <body>
     24 
     25 <pre>There should be no red areas.<pre>
     26 <ol><li><x>XXXXXXXX</x></ol>
     27 <ol><li><x>XXXXXXXX</x></ol>
     28 <ol><li><x>XXXXXXXX</x></ol>
     29 <ol><li><x>XXXXXXXX</x></ol>
     30 
     31 </body>
     32 </html>