1 <!-- Based on fast/repaint/add-table-overpaint.html -->
5 <body onload=
"runPaintInvalidationTest()" style=
"margin: 0px">
6 <script src=
"resources/paint-invalidation-test.js"></script>
11 background-color: blue;
14 <!-- This test adds 3 tables do the document. Adding the 3rd table should not cause the first table to repaint. -->
15 <div id=
"container"></div>
18 var div
= document
.createElement('div');
19 document
.getElementById('container').appendChild(div
);
20 div
.innerHTML
= '<table><td></td></table>';
24 window
.expectedPaintInvalidationObjects
= [
25 "LayoutBlockFlow DIV",
28 "LayoutTableSection TBODY",
32 function paintInvalidationTest() {