3 <title>Table Repaint Test
</title>
6 <script type=
"text/javascript">
9 setTimeout('RepaintBug()', 10);
10 if (window
.testRunner
)
11 testRunner
.waitUntilDone();
13 function RepaintBug() {
14 var div1
= document
.getElementById("bug2");
15 div1
.style
.color
= 'green';
16 if (window
.testRunner
)
17 testRunner
.notifyDone();
21 <body onLoad=
"Setup()">
23 This test checks the renderer's ability to layer multiple cells in a table on top of one another. This test has three cells that span multiple table grid slots. The
<span style=
"color: red; font-weight: bold;">red
</span> cell starts at row
1 and column
3 and spans three rows. The
<span style=
"color: blue; font-weight: bold;">blue
</span> cell starts at row
2, and column
2, and spans two columns and two rows. The
<span style=
"color: green; font-weight: bold;">green
</span> cell spans
4 columns of row
3.
26 If the test succeeds then you should see no text inside the table. If you see the text 'FAIL' inside the table, then the test has failed.
31 <td> </td>
32 <td> </td>
33 <td rowspan=
"3" valign=
"bottom" style=
"background-color:red;"><div id=
"bug1"> </div></td>
36 <td> </td>
37 <td rowspan=
"2" colspan=
"2" align=
"right" valign=
"bottom" style=
"background-color:blue;"><div id=
"bug2"> FAIL
</div></td>
40 <td colspan=
"3" align=
"right" style=
"background-color:green;"><div id=
"bug3"> </div></td>