<!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>