li-value-reversed-006-ref.html (1029B)
1 <!doctype html> 2 <title></title> 3 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 4 <meta name="assert" content="The last counter-increment value determines the start value."> 5 <style> 6 :root { 7 color:black; background-color:white; font:10px/1 monospace; 8 } 9 ol::before { 10 content: counters(list-item,"."); 11 } 12 </style> 13 <ol reversed start="7"> 14 <li style="counter-increment: list-item -2">6 15 <li style="counter-increment: list-item -2">4 16 <li style="counter-increment: list-item -2">2 17 </ol> 18 <ol reversed start="19"> 19 <li style="counter-increment: list-item -3">17 20 <li style="counter-increment: list-item -1">16 21 <li style="counter-increment: list-item -8">8 22 </ol> 23 <ol reversed start="-9"> 24 <li style="counter-increment: list-item 2">-6 25 <li style="counter-increment: list-item 2">-4 26 <li style="counter-increment: list-item 2">-2 27 </ol> 28 <ol reversed start="-21"> 29 <li style="counter-increment: list-item 3">-17 30 <li style="counter-increment: list-item 1">-16 31 <li style="counter-increment: list-item 8">-8 32 </ol>