| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html style="font-size: 16px"> |
| 3 <head> |
| 4 |
| 5 <meta name="viewport" content="width=800"> |
| 6 <style> |
| 7 body { |
| 8 width: 800px; |
| 9 margin: 0; |
| 10 overflow-y: hidden; |
| 11 } |
| 12 </style> |
| 13 |
| 14 </head> |
| 15 <body> |
| 16 |
| 17 <div style="font-size: 2.5rem"> |
| 18 The below list item markers should be autosized by a factor of 2.5 (800/320). Lo
rem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor in
cididunt ut labore et dolore magna aliqua. |
| 19 </div> |
| 20 <ul> |
| 21 <li style="font-size: 2.5rem">Simple plain list item</li> |
| 22 <li style="font-size: 2.5rem"></li> |
| 23 <li style="font-size: 2.5rem"><img></img></li> |
| 24 <li style="font-size: 2.5rem"><form><input type="text"></input></form></li> |
| 25 </ul> |
| 26 |
| 27 </body> |
| 28 </html> |
| OLD | NEW |