| OLD | NEW |
| 1 <script src="../../resources/ahem.js"></script> |
| 1 <div style="display: -webkit-box; -webkit-box-orient: vertical;"> | 2 <div style="display: -webkit-box; -webkit-box-orient: vertical;"> |
| 2 <div style="width: 80px; height: 80px; background-color: blue;"> | 3 <div style="width: 80px; height: 80px; background-color: blue;"> |
| 3 <div id="float" style="float: left; width: 20px; height: 110px; backgrou
nd-color: silver;"></div> | 4 <div id="float" style="float: left; width: 20px; height: 110px; backgrou
nd-color: silver;"></div> |
| 4 </div> | 5 </div> |
| 5 <div style="font-family: Ahem; width: 80px; height: 80px; background-color:
yellow;">Test overhanging floats</div> | 6 <div style="font-family: Ahem; width: 80px; height: 80px; background-color:
yellow;">Test overhanging floats</div> |
| 6 </div> | 7 </div> |
| 7 <script> | 8 <script> |
| 8 document.body.offsetTop; | 9 document.body.offsetTop; |
| 9 document.getElementById("float").style.display = "none"; | 10 document.getElementById("float").style.display = "none"; |
| 10 </script> | 11 </script> |
| OLD | NEW |