| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- You should only one blue textbox between the green list maker and green tex
tbox --> | 2 <!-- You should only one blue textbox between the green list maker and green tex
tbox --> |
| 3 <html> | 3 <html> |
| 4 <script src="../../resources/ahem.js"></script> |
| 4 <body style="font: 1em/1 Ahem, sans-serif;"> | 5 <body style="font: 1em/1 Ahem, sans-serif;"> |
| 5 <style> | 6 <style> |
| 6 li:before { | 7 li:before { |
| 7 display: table-row; | 8 display: table-row; |
| 8 content: "ABCD"; | 9 content: "ABCD"; |
| 9 color: blue; | 10 color: blue; |
| 10 } | 11 } |
| 11 </style> | 12 </style> |
| 12 <ul> | 13 <ul> |
| 13 <li style="color: green">EFGH</li> | 14 <li style="color: green">EFGH</li> |
| 14 </ul> | 15 </ul> |
| 15 <script> | 16 <script> |
| 16 document.body.offsetTop; | 17 document.body.offsetTop; |
| 17 document.body.style.fontSize = "200%"; | 18 document.body.style.fontSize = "200%"; |
| 18 </script> | 19 </script> |
| 19 </body> | 20 </body> |
| 20 </html> | 21 </html> |
| OLD | NEW |