wpt / css / css-content / attr-chained-pseudo-001.html

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

/css/css-content/attr-chained-pseudo-001.html

<html>
  <head>
    <meta charset="utf8">
    <title></title>
    <meta name="assert"
      content="[The attr() function] can also be used with pseudo-elements,
               in which case the attribute's value on the pseudo-element's
               originating element is returned.">
    <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
    <link rel="help" href="https://drafts.csswg.org/css-values-5/#attr-notation">
    <link rel=match href="attr-chained-pseudo-001-ref.html">
    <style>
      div {
        margin-left: 4em;
      }
      div::after {
        content: "World";
        display: list-item;
      }
      div::after::marker {
        content: attr(data-mark, "failed ");
        color: blue;
      }
    </style>
  </head>
  <body>
    <p>The line "World" should have "PASS" (in blue) to its left as a list-item marker:</p>
    <div data-mark="PASS ">Hello</div>
  </body>
</html>

/css/css-content/attr-chained-pseudo-001-ref.html

<html>
  <head>
    <meta charset="utf8">
    <style>
      div {
        margin-left: 4em;
      }
      .ref {
        display: list-item;
      }
      .ref::marker {
        content: "PASS ";
        color: blue;
      }
    </style>
  </head>
  <body>
    <p>The line "World" should have "PASS" (in blue) to its left as a list-item marker:</p>
    <div>Hello</div>
    <div class=ref>World</div>
  </body>
</html>