Status: FAIL | Duration: 13ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-counter-styles/counter-style-at-rule/system-extends.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Test: system extends</title> <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org/"> <link rel="help" href="https://drafts.csswg.org/css-counter-styles-3/#extends-system"> <link rel="match" href="system-extends-ref.html"> <link rel="stylesheet" href="support/test-common.css"> <style type="text/css"> @counter-style a { system: extends upper-roman; prefix: "Chapter "; range: 1 5; } @counter-style b { system: extends a; prefix: "Section "; range: 1 6; } </style> <ol start="-2" style="list-style-type: a"> <li><li><li><li><li> <li><li><li><li><li> </ol> <ol start="-2" style="list-style-type: b"> <li><li><li><li><li> <li><li><li><li><li> </ol>
/css/css-counter-styles/counter-style-at-rule/system-extends-ref.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Reference: symbols function, invalid</title> <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org/"> <link rel="stylesheet" href="support/ref-common.css"> <!-- list-style-type: a --> <div>Chapter -2. </div> <div>Chapter -1. </div> <div>Chapter 0. </div> <div>Chapter I. </div> <div>Chapter II. </div> <div>Chapter III. </div> <div>Chapter IV. </div> <div>Chapter V. </div> <div>Chapter 6. </div> <div>Chapter 7. </div> <!-- list-style-type: b --> <div>Section -2. </div> <div>Section -1. </div> <div>Section 0. </div> <div>Section I. </div> <div>Section II. </div> <div>Section III. </div> <div>Section IV. </div> <div>Section V. </div> <div>Section VI. </div> <div>Section 7. </div>