chromium/third_party/blink/web_tests/paint/background/background-clip-text-transform-expected.html

<!DOCTYPE html>
<style>
body {
  font-size: 40px;
}
.t {
  background: blue;
  -webkit-background-clip: text;
  color: rgb(255,0,0,0.5);
}
</style>
Passes if all texts are purple.
<div class="t">Text1</div>
<div class="t">Transformed2</div>
<div class="t">Text3</div>
<div class="t">Transformed4</div>