| 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 <script> |
| 15 if (window.internals) { |
| 16 window.internals.settings.setTextAutosizingEnabled(true); |
| 17 window.internals.settings.setTextAutosizingWindowSizeOverride(320, 480); |
| 18 } else if (window.console && console.warn) { |
| 19 console.warn("This test depends on the Text Autosizing setting being true, s
o run it in DumpRenderTree, or manually enable Text Autosizing, and either use a
mobile device with 320px device-width (like Nexus S or iPhone), or define HACK_
FORCE_TEXT_AUTOSIZING_ON_DESKTOP."); |
| 20 } |
| 21 </script> |
| 22 </head> |
| 23 <body> |
| 24 |
| 25 <div> |
| 26 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. |
| 27 </div> |
| 28 <ul> |
| 29 <li>Simple plain list item</li> |
| 30 <li></li> |
| 31 <li><img></img></li> |
| 32 <li><form><input type="text"></input></form></li> |
| 33 </ul> |
| 34 |
| 35 </body> |
| 36 </html> |
| OLD | NEW |