| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=10522</title> | 3 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=10522</title> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 .float { float: right; height: 40px; width: 40px; } | 5 .float { float: right; height: 40px; width: 40px; } |
| 6 .test { height: 100px; background-color: aliceblue } | 6 .test { height: 100px; background-color: aliceblue } |
| 7 </style> | 7 </style> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 <div class="test"> | 10 <div class="test"> |
| 11 <div class="float"></div> | 11 <div class="float"></div> |
| 12 <div style="clear: right; background-color: purple; width: 40px; padding
: 3px;"> | 12 <div style="clear: right; background-color: purple; width: 40px; padding
: 3px;"> |
| 13 <div style="height: 20px; width: 0;" id="target"> | 13 <div style="height: 20px; width: 0;" id="target"> |
| 14 </div> | 14 </div> |
| 15 </div> | 15 </div> |
| 16 </div> | 16 </div> |
| 17 | 17 |
| 18 <div class="test"> | 18 <div class="test"> |
| 19 <div class="float"></div> | 19 <div class="float"></div> |
| 20 <table style="clear: both; background-color: purple;"> | 20 <table style="clear: both; background-color: purple;"> |
| 21 <tr> | 21 <tr> |
| 22 <td id="cell" style="height: 20px; width: 40px;"> | 22 <td id="cell" style="height: 20px; width: 40px;"> |
| 23 </td> | 23 </td> |
| 24 </tr> | 24 </tr> |
| 25 </table> | 25 </table> |
| 26 </div> | 26 </div> |
| 27 </body> | 27 </body> |
| 28 </html> | 28 </html> |
| OLD | NEW |