| OLD | NEW |
| 1 <!-- The blue and green text boxes should not overlap --> | 1 <!-- The blue and green text boxes should not overlap --> |
| 2 <html> | 2 <html> |
| 3 <script src="../../resources/ahem.js"></script> |
| 3 <body style="font: 1em/1 Ahem, sans-serif;"> | 4 <body style="font: 1em/1 Ahem, sans-serif;"> |
| 4 <ruby id="test" style="display: block; color: blue"> | 5 <ruby id="test" style="display: block; color: blue"> |
| 5 ABCD | 6 ABCD |
| 6 </ruby> | 7 </ruby> |
| 7 <div style="font-size: 800%; color: green"> | 8 <div style="font-size: 800%; color: green"> |
| 8 EFGH | 9 EFGH |
| 9 </div> | 10 </div> |
| 10 <script> | 11 <script> |
| 11 document.body.offsetTop; | 12 document.body.offsetTop; |
| 12 var test = document.getElementById("test"); | 13 var test = document.getElementById("test"); |
| 13 test.style.fontSize = "800%"; | 14 test.style.fontSize = "800%"; |
| 14 </script> | 15 </script> |
| 15 </body> | 16 </body> |
| 16 </html> | 17 </html> |
| OLD | NEW |