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