wpt / css / css-ruby / pseudo-first-letter.html

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

/css/css-ruby/pseudo-first-letter.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-pseudo/#first-letter-application">
<link rel="match" href="pseudo-first-letter-ref.html">
<style>
div::first-letter {
  color: green;
}
</style>
<div><ruby>Base<rt>Annotation</ruby></div>

/css/css-ruby/pseudo-first-letter-ref.html

<!DOCTYPE html>
<style>
span {
  color: green;
}
</style>
<div><ruby><span>B</span>ase<rt>Annotation</ruby></div>