wpt / css / css-lists / li-value-reversed-030.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-lists/li-value-reversed-030.html

<!doctype html>
<title>Nested list-item with reversed(list-item)</title>
<link rel="help" href="https://drafts.csswg.org/css-lists/#auto-numbering">
<link rel="help" href="https://drafts.csswg.org/css-lists/#instantiating-counters">
<link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com">
<link rel="match" href="li-value-reversed-025-ref.html">
<ol>
  <div style="counter-reset: list-item 3;">
    <li>Four</li>
    <li>Five</li>
    <li>Six</li>
  </div>
</ol>

/css/css-lists/li-value-reversed-025-ref.html

<!doctype html>
<title>CSS Test Reference</title>
<ol>
  <li value=4>Four
  <li value=5>Five
  <li value=6>Six
</ol>