wpt / css / css-backgrounds / background-clip / clip-text-fragmentation.html

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

/css/css-backgrounds/background-clip/clip-text-fragmentation.html

<!DOCTYPE html>
<title>background-clip:text in multi-column layout</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text">
<link rel="match" href="clip-text-fragmentation-ref.html">
<style>
.multi_column {
  font-size: 40px;
  width: 8em;
  column-gap: 0;
  columns: 2;
  orphans: 1;
  widows: 1;
}
.clip {
  color: transparent;
  background-color: green;
  background-clip: text;
}
</style>
<!-- A green word "PASS" should be seen below. -->
<div class="multi_column">
  <div class="clip">
    <div><br>PASS</div>
  </div>
</div>

/css/css-backgrounds/background-clip/clip-text-fragmentation-ref.html

<!DOCTYPE html>
<title>background-clip:text in multi-column layout (reference)</title>
<style>
.clip {
  font-size: 40px;
  color: green;
  margin-left:4em;
}
</style>
<!-- A green word "PASS" should be seen below. -->
<div class="clip">
  PASS
</div>