| <title>Simple Table Painting</title> |
| table.testtable { border: 1px solid black; border-collapse:collapse; background-color: green; } |
| table.testtable td { border: 1px solid black; font-size: 20px; background-color: green; width:60px; height:60px; direction:rtl;} |
| window.testRunner.waitUntilDone(); |
| var testCell = document.getElementById("testcell"); |
| var offset = document.body.offsetTop; |
| testCell.style.backgroundColor = "green"; |
| window.testRunner.notifyDone(); |
| <script type="text/javascript" src="../repaint/resources/repaint.js"></script> |
| <body onload="runRepaintTest()"> |
| <table class="testtable"> |
| <td style="background-color: red;" id="testcell"></td> |