tor-browser

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

too-long-representation.html (765B)


      1 <!DOCTYPE html>
      2 <link rel="stylesheet" href="test-common.css">
      3 <style type="text/css">
      4  @counter-style a {
      5    /* system: symbolic; */
      6    symbols: '*' \2051  \2020  \2021;
      7    suffix: '';
      8  }
      9  @counter-style b {
     10    symbols: \10300;
     11  }
     12  @counter-style c {
     13    system: additive;
     14    additive-symbols: 6 \2685, 5 \2684, 4 \2683, 3 \2682, 2 \2681, 1 \2680;
     15    suffix: "";
     16  }
     17  @counter-style d {
     18    system: additive;
     19    additive-symbols: 1 \10300;
     20  }
     21 </style>
     22 <ol style="list-style-type: a">
     23  <li value="1000"><!-- too long -->
     24 </ol>
     25 <ol style="list-style-type: b">
     26  <li value="100"><!-- too long -->
     27 </ol>
     28 <ol style="list-style-type: c">
     29  <li value="1000"><!-- too long -->
     30 </ol>
     31 <ol style="list-style-type: d">
     32  <li value="100"><!-- too long -->
     33 </ol>