chromium/third_party/blink/web_tests/paint/invalidation/table/collapsed-border-cell-resize.html

<!DOCTYPE html>
<table style="border-collapse: collapse">
  <tr>
    <td id="target" style="width: 100px; height: 100px; border: 1px solid blue"></td>
  </tr>
</table>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
  target.style.height = '200px';
}
onload = runRepaintAndPixelTest;
</script>