tor-browser

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

li-value-reversed-006a.html (1339B)


      1 <!doctype html>
      2 <title></title>
      3 <link rel="help" href="https://drafts.csswg.org/css-lists/#instantiating-counters">
      4 <link rel="help" href="https://html.spec.whatwg.org/#attr-ol-reversed">
      5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/6738">
      6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1706346">
      7 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      8 <link rel="match" href="li-value-reversed-006-ref.html">
      9 <meta name="assert" content="The last counter-increment value determines the start value.">
     10 <style>
     11 :root {
     12  color:black; background-color:white; font:10px/1 monospace;
     13 }
     14 ol::before, li::before {
     15  content: counters(list-item,".");
     16 }
     17 </style>
     18 <ol reversed>
     19 <li style="counter-increment: list-item -2">
     20 <li style="counter-increment: list-item -2">
     21 <li style="counter-increment: list-item -2">
     22 </ol>
     23 <ol reversed>
     24 <li style="counter-increment: list-item -3">
     25 <li style="counter-increment: list-item -1">
     26 <li style="counter-increment: list-item -8">
     27 </ol>
     28 <ol reversed>
     29 <li style="counter-increment: list-item 2">
     30 <li style="counter-increment: list-item 2">
     31 <li style="counter-increment: list-item 2">
     32 </ol>
     33 <ol reversed>
     34 <li style="counter-increment: list-item 3">
     35 <li style="counter-increment: list-item 1">
     36 <li style="counter-increment: list-item 8">
     37 </ol>