wpt / css / css-lists / counter-order-display-contents.html

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

/css/css-lists/counter-order-display-contents.html

<!DOCTYPE html>
<html>
  <head>
    <title>CSS counter order with "display: contents"</title>
    <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
    <link rel="help" href="https://www.w3.org/TR/css-lists-3/#inheriting-counters">
    <link rel="match" href="counter-order-display-contents-ref.html">
  </head>

  <body>
    <style>
      .counted {
        counter-increment: section;
      }

      .counted::before {
        content: "C=" counter(section) " ";
      }
    </style>
    <div style="display: contents;">
        <div class="counted">One</div>
    </div>
    <div style="display: contents;">
        <div class="counted">Two</div>
    </div>
    <div style="display: contents;">
        <div class="counted">Three</div>
    </div>
  </body>
</html>

/css/css-lists/counter-order-display-contents-ref.html

<!DOCTYPE html>
<html>
  <head>
    <title>CSS counter order with Shadow DOM and SLOT</title>
    <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
    <link rel="help" href="https://www.w3.org/TR/css-lists-3/#inheriting-counters">
    <style>
      .counted {
        counter-increment: section;
      }

      .counted::before {
        content: "C=" counter(section) " ";
      }
    </style>
  </head>

  <body>

  <div>
    <div class="counted">One</div>
    <div class="counted">Two</div>
    <div class="counted">Three</div>
  </div>

  </body>
</html>