tor-browser

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

redefine-builtin.html (806B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>CSS Test: redefine builtin</title>
      4 <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org/">
      5 <link rel="help" href="https://drafts.csswg.org/css-counter-styles-3/#the-counter-style-rule">
      6 <link rel="match" href="redefine-builtin-ref.html">
      7 <link rel="stylesheet" href="support/test-common.css">
      8 <style type="text/css">
      9  @counter-style none {
     10    system: extends lower-roman;
     11  }
     12  @counter-style decimal {
     13    system: extends upper-roman;
     14  }
     15  @counter-style disc {
     16    system: extends decimal;
     17  }
     18  @counter-style hebrew {
     19    system: extends cjk-decimal;
     20  }
     21 </style>
     22 <ol>
     23  <li style="list-style-type: none">foo
     24  <li style="list-style-type: decimal">bar
     25  <li style="list-style-type: disc">baz
     26  <li style="list-style-type: hebrew">
     27 </ol>