wpt / css / css-backgrounds / background-clip / clip-text-multiline-linebreak.html

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

/css/css-backgrounds/background-clip/clip-text-multiline-linebreak.html

<!DOCTYPE html>
<title>background-clip:text on an inline with forced linebreak</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text">
<link rel="match" href="clip-text-multiline-linebreak-ref.html">
<style>
.container {
  line-height: 1;
}
.textclip {
  font-size: 100px;
  background-color: lime;
  background-clip: text;
  color: transparent;
}
</style>
<div class="container">
  <span class="textclip">
    XX<br>
    <span>YY</span>
  </span>
</div>

/css/css-backgrounds/background-clip/clip-text-multiline-linebreak-ref.html

<!DOCTYPE html>
<title>background-clip:text on an inline with forced linebreak (reference)</title>
<style>
.container {
  line-height: 1;
}
.textclip {
  font-size: 100px;
  color: lime;
}
</style>
<div class="container">
  <span class="textclip">
    XX<br>
    <span>YY</span>
  </span>
</div>