| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 2 "http://www.w3.org/TR/html4/strict.dtd"> | 2 "http://www.w3.org/TR/html4/strict.dtd"> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <script src="resources/text-based-repaint.js"></script> | 5 <script src="resources/repaint.js"></script> |
| 6 <script> | 6 <script> |
| 7 function repaintTest() | 7 function repaintTest() |
| 8 { | 8 { |
| 9 document.getElementById("t").style.height='60px'; | 9 document.getElementById("t").style.height='60px'; |
| 10 document.getElementById("s").style.height='0'; | 10 document.getElementById("s").style.height='0'; |
| 11 } | 11 } |
| 12 </script> | 12 </script> |
| 13 </head> | 13 </head> |
| 14 <body onload="runRepaintTest();"> | 14 <body onload="runRepaintTest();"> |
| 15 <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=8449">Bugzill
a bug 8449</a> | 15 <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=8449">Bugzill
a bug 8449</a> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 <td style="height: 180px;"></td> | 34 <td style="height: 180px;"></td> |
| 35 </tr> | 35 </tr> |
| 36 <tr> | 36 <tr> |
| 37 <td style="background: red;"></td> | 37 <td style="background: red;"></td> |
| 38 <td style="height: 60px;" id="s"></td> | 38 <td style="height: 60px;" id="s"></td> |
| 39 </tr> | 39 </tr> |
| 40 </table> | 40 </table> |
| 41 | 41 |
| 42 </body> | 42 </body> |
| 43 </html> | 43 </html> |
| OLD | NEW |