wpt / css / css-lists / li-list-item-counter-004.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-lists/li-list-item-counter-004.html

<!doctype html>
<title>Interaction of ol reversed and list-item value</title>
<link rel="help" href="https://html.spec.whatwg.org/#attr-ol-reversed">
<link rel="help" href="https://html.spec.whatwg.org/#ordinal-value">
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#auto-numbering">
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#instantiating-counters">
<link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com">
<link rel="match" href="li-list-item-counter-004-ref.html">
<ol>
 <li>One
 <div style="counter-increment: list-item 1"></div>
 <li>Three
</ol>

/css/css-lists/li-list-item-counter-004-ref.html

<!doctype html>
<title>CSS Test Reference</title>
<ol>
 <li value=1>One
 <li value=3>Three
</ol>