wpt / css / css-pseudo / first-line-with-inline-block-before.html

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

/css/css-pseudo/first-line-with-inline-block-before.html

<!DOCTYPE html>
<title>inline block ::before styles should apply inside ::first-line</title>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#generated-content">
<link rel="match" href="first-line-with-inline-block-before-ref.html">
<style>
  #target::first-line {
    color: red;
  }
  #target::before {
    content: "green";
    color: green;
    display: inline-block;
  }
</style>
<div id="target">red</div>

/css/css-pseudo/first-line-with-inline-block-before-ref.html

<!DOCTYPE html>
<div>
  <span style="color: green">green</span><span style="color: red">red</span>
</div>