descriptor-fallback.html (890B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>CSS Test: descriptor fallback</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/#counter-style-fallback"> 6 <link rel="match" href="descriptor-fallback-ref.html"> 7 <link rel="stylesheet" href="support/test-common.css"> 8 <style type="text/css"> 9 @counter-style a { 10 system: fixed; 11 symbols: a b c; 12 fallback: b; 13 } 14 @counter-style b { 15 system: fixed 4; 16 symbols: d e f; 17 fallback: a; 18 } 19 @counter-style c { 20 system: fixed 7; 21 symbols: g h i; 22 fallback: a; 23 } 24 </style> 25 <ol style="list-style-type: a"> 26 <li><li><li> 27 <li><li><li> 28 <li><li><li> 29 </ol> 30 <ol style="list-style-type: b"> 31 <li><li><li> 32 <li><li><li> 33 <li><li><li> 34 </ol> 35 <ol style="list-style-type: c"> 36 <li><li><li> 37 <li><li><li> 38 <li><li><li> 39 </ol>