wpt / css / css-pseudo / first-line-on-ancestor-block.html

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

/css/css-pseudo/first-line-on-ancestor-block.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-line-pseudo">
<link rel="match" href="first-line-on-ancestor-block-ref.html">
<style>
  #block::first-line { color: green; }
</style>
<div id="block">
  <div>
    <div style="color: blue">
      <div>
        <span><span>This text should be green.</span></span><br>
        This text should be blue.
      </div>
    </div>
  </div>
</div>

/css/css-pseudo/first-line-on-ancestor-block-ref.html

<!DOCTYPE html>
<div>
  <span style="color: green">This text should be green.</span><br>
  <span style="color: blue">This text should be blue.</span>
</div>