| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> | |
| 2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
| 3 <head> | |
| 4 <title>Test for http://bugs.webkit.org/show_bug.cgi?id=12885</title> | |
| 5 <style type="text/css"> | |
| 6 div.wide { width: 100px; height: 50px; } | |
| 7 div.tall { width: 50px; height: 100px; } | |
| 8 div.short { height: 50px; width: 50px; } | |
| 9 #main-content { float: left; width: 100px; height: 80px; } | |
| 10 #target3 { clear: both; height: 20px; background: green; } | |
| 11 </style> | |
| 12 </head> | |
| 13 <body"> | |
| 14 <div style="position: absolute; border: medium solid green; top: 8px; height
: 100px;"> | |
| 15 <div id="target1"> | |
| 16 <div class="wide"></div> | |
| 17 </div> | |
| 18 </div> | |
| 19 | |
| 20 <div style="position: absolute; border: medium solid green; top: 158px; widt
h: 100px;"> | |
| 21 <div style="width: 50px" id="target2"> | |
| 22 <div class="tall"></div> | |
| 23 </div> | |
| 24 </div> | |
| 25 | |
| 26 <div style="position: absolute; top: 308px;"> | |
| 27 <div style="background: green;"> | |
| 28 <div style="position: relative;"> | |
| 29 <div id="main-content"> | |
| 30 </div> | |
| 31 </div> | |
| 32 <div id="target3"></div> | |
| 33 </div> | |
| 34 </div> | |
| 35 </body> | |
| 36 </html> | |
| OLD | NEW |