tor-browser

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

descriptor-calc-ref.html (680B)


      1 <!DOCTYPE html>
      2 <head>
      3  <title>CSS Test Reference</title>
      4  <link rel="stylesheet" href="support/test-common.css">
      5  <style type="text/css">
      6    @counter-style a {
      7      system: extends upper-roman;
      8      range: 1 6;
      9      pad: 4 '*';
     10    }
     11    @counter-style b {
     12      system: fixed 2;
     13      symbols: g h;
     14    }
     15    @counter-style c {
     16      system: additive;
     17      additive-symbols: 3 c, 2 b, 1 a;
     18    }
     19  </style>
     20 </head>
     21 <body>
     22  <ol style="list-style-type: a;"><li><li><li><li><li><li><li><li><li><li></ol>
     23  <ol style="list-style-type: b;"><li><li><li><li><li><li><li><li><li><li></ol>
     24  <ol style="list-style-type: c;"><li><li><li><li><li><li><li><li><li><li></ol>
     25 </body>