system-extends-invalid.html (1126B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>CSS Test: system extends, invalid</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/#extends-system"> 6 <link rel="match" href="system-extends-invalid-ref.html"> 7 <link rel="stylesheet" href="support/test-common.css"> 8 <style type="text/css"> 9 @counter-style a { 10 system: extends b; 11 prefix: a; 12 } 13 @counter-style b { 14 system: extends c; 15 suffix: b; 16 } 17 @counter-style c { 18 system: extends b; 19 pad: 2 c; 20 } 21 @counter-style d { 22 system: extends d; 23 prefix: d; 24 } 25 @counter-style e { 26 system: extends unknown; 27 prefix: e; 28 } 29 @counter-style f { 30 system: extends decimal; 31 symbols: a; 32 } 33 @counter-style g { 34 system: extends decimal; 35 additive-symbols: 1 a; 36 } 37 </style> 38 <ol> 39 <li style="list-style-type: a;"> 40 <li style="list-style-type: b;"> 41 <li style="list-style-type: c;"> 42 <li style="list-style-type: d;"> 43 <li style="list-style-type: e;"> 44 <li style="list-style-type: f;">foo 45 <li style="list-style-type: g;">bar 46 </ol>