4 <body onload=
"runRepaintTest()" style=
"margin: 0px">
5 <script src=
"resources/text-based-repaint.js"></script>
10 background-color: blue;
13 <!-- This test adds 3 tables do the document. Adding the 3rd table should not cause the first table to repaint. -->
14 <div id=
"container"></div>
17 var div
= document
.createElement('div');
18 document
.getElementById('container').appendChild(div
);
19 div
.innerHTML
= '<table><td></td></table>';
23 if (window
.testRunner
)
24 testRunner
.dumpAsTextWithPixelResults(); // We don't care about the rendering tree dump, just the pixel dump.
25 function repaintTest() {