chromium/third_party/blink/web_tests/paint/invalidation/table/add-table-overpaint-expected.html


<!DOCTYPE html>
<html>
<body style="margin: 0px">
<style>
td {
  height: 150px;
  width: 150px;
  background-color: blue;
}
</style>
<!-- This test adds 3 tables do the document.  Adding the 3rd table should not cause the first table to repaint. -->
<div id="container">
  <div>
    <table><td></td></table>
  </div>
  <div>
    <table><td></td></table>
  </div>
  <div>
    <table><td></td></table>
  </div>
</div>
</body>
</html>