| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
| 2 <html lang="en"> | 2 <html lang="en"> |
| 3 <head> | 3 <body> |
| 4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> | |
| 5 <script type="text/javascript"> | |
| 6 function repaintTest() | |
| 7 { | |
| 8 document.getElementById('im').style.width = '100px'; | |
| 9 } | |
| 10 </script> | |
| 11 </head> | |
| 12 <body onload="runRepaintTest();"> | |
| 13 <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=3509">Bugzill
a bug 3509</a> REGRESSION(125-412) Portion of nested table is not painted correc
tly on cafepress site</p> | 4 <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=3509">Bugzill
a bug 3509</a> REGRESSION(125-412) Portion of nested table is not painted correc
tly on cafepress site</p> |
| 14 | 5 |
| 15 <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</
b> | 6 <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</
b> |
| 16 The blue rectangle will change into a square. | 7 The blue rectangle will change into a square. |
| 17 </p> | 8 </p> |
| 18 | 9 |
| 19 <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
| 10 <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
|
| 20 The blue rectangle will change into a shape that is not square. | 11 The blue rectangle will change into a shape that is not square. |
| 21 </p> | 12 </p> |
| 22 | 13 |
| 23 <table width="100%"> | 14 <table width="100%"> |
| 24 <tr> | 15 <tr> |
| 25 <td style="width: 100px;"> | 16 <td style="width: 100px;"> |
| 26 <div id="qu" style="margin-top: 2.0__qem;"></div> | 17 <div id="qu" style="margin-top: 2.0__qem;"></div> |
| 27 <div id="im" style="height: 100px; width: 50px; background: blue
;"> </div> | 18 <div id="im" style="height: 100px; width: 100px; background: blu
e;"> </div> |
| 28 </td> | 19 </td> |
| 29 </tr> | 20 </tr> |
| 30 </table> | 21 </table> |
| 31 | 22 |
| 32 </body> | 23 </body> |
| 33 </html> | 24 </html> |
| OLD | NEW |