| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- Test passes if you see RUNIN between list marker and ABCD. All text should
be of same 40px size. --> | 2 <html style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;"> |
| 3 <html> | 3 <!-- Test passes if you see RUNIN, followed by list marker and ABCD. All text sh
ould be of same 50px size. --> |
| 4 <body style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;"> | |
| 5 <style> | 4 <style> |
| 6 li:before { content: "AB"; } | 5 li:before { content: "AB"; } |
| 7 </style> | 6 </style> |
| 8 <div style="display: run-in; color: green">RUNIN</div> | 7 <div style="display: run-in; color: green">RUNIN</div> |
| 9 <li style="color: blue">CD</li> | 8 <li style="color: orange">CD</li> |
| 10 <script> | 9 <script> |
| 11 document.body.offsetTop; | 10 document.body.offsetTop; |
| 12 document.body.style.fontSize = "40px"; | 11 document.body.style.fontSize = "50px"; |
| 13 </script> | 12 </script> |
| 14 </body> | 13 </body> |
| 15 </html> | 14 </html> |
| OLD | NEW |