chromium/third_party/blink/web_tests/printing/thead-repeats-with-translucent-text-and-borders.html

<!DOCTYPE html>
<style>
body { color: rgba(0, 0, 0, 0.4); font-weight: bold; }
table { border-collapse: collapse; }
tr { page-break-inside: avoid; border-left: 5px solid rgba(0, 0, 0, 0.4); }
th { width: 400px; height: 100px; }
td { width: 400px; height: 450px; }
</style>
<script>
  if (window.testRunner)
    testRunner.setPrinting();
</script>
<div>All text and borders should be in light gray</div>
<table>
  <thead>
    <tr><th>Header</th></tr>
  </thead>
  <tbody>
    <tr><td>Foo</td></tr>
    <tr><td>Foo</td></tr>
    <tr><td>Foo</td></tr>
    <tr><td>Foo</td></tr>
  </tbody>
</table>
<div style=>All text and borders should be in light gray</div>