| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- Test passes if you see green text only and no "PA" repetition --> | 2 <!-- Test passes if you see green text only and no "PA" repetition --> |
| 3 <html> | 3 <html> |
| 4 <script src="../../resources/ahem.js"></script> |
| 4 <body style="font-family: Ahem; font-size: 40px; -webkit-font-smoothing: none;"> | 5 <body style="font-family: Ahem; font-size: 40px; -webkit-font-smoothing: none;"> |
| 5 <style> | 6 <style> |
| 6 li:before { content: "PA"; } | 7 li:before { content: "PA"; } |
| 7 </style> | 8 </style> |
| 8 <li>SS | 9 <li>SS |
| 9 <div></div> | 10 <div></div> |
| 10 </li> | 11 </li> |
| 11 <script> | 12 <script> |
| 12 document.body.offsetTop; | 13 document.body.offsetTop; |
| 13 document.body.style.color = "green"; | 14 document.body.style.color = "green"; |
| 14 </script> | 15 </script> |
| 15 </body> | 16 </body> |
| 16 </html> | 17 </html> |
| OLD | NEW |