Chromium Code Reviews| 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 .largersize{font-size: 1.1em} | |
|
johnme
2013/04/26 12:24:57
Unused?
timvolodine
2013/04/26 18:15:09
Done.
| |
| 13 </style> | |
| 14 | |
| 15 <script> | |
| 16 if (window.internals) { | |
| 17 window.internals.settings.setTextAutosizingEnabled(true); | |
| 18 window.internals.settings.setTextAutosizingWindowSizeOverride(320, 480); | |
| 19 } else if (window.console && console.warn) { | |
| 20 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."); | |
| 21 } | |
| 22 </script> | |
| 23 | |
| 24 </head> | |
| 25 <body> | |
| 26 | |
| 27 <textarea rows=8 cols=85> | |
|
johnme
2013/04/26 12:24:57
Nit: it's more standard to always put quotes aroun
timvolodine
2013/04/26 18:15:09
Done.
| |
| 28 The text inside this textarea should not be autosized. | |
| 29 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostr ud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis au te irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qu i officia deserunt mollit anim id est laborum. | |
| 30 </textarea> | |
| 31 | |
| 32 </body> | |
| 33 </html> | |
| OLD | NEW |