OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html style="font-size: 16px"> |
| 3 <head> |
| 4 <meta name="viewport" content="width=800"> |
| 5 <style> |
| 6 body { |
| 7 width: 800px; |
| 8 margin: 0; |
| 9 overflow-y: hidden; |
| 10 } |
| 11 #i { |
| 12 padding:6px 10px; |
| 13 height:29px; |
| 14 box-sizing:border-box; |
| 15 } |
| 16 </style> |
| 17 <script src="resources/autosizingTest.js"></script> |
| 18 </head> |
| 19 <body> |
| 20 This test passes if the input field is not autosized. |
| 21 <br> |
| 22 <span> |
| 23 <input id="i" value="should not autosize" /> |
| 24 </span> |
| 25 <br><br> |
| 26 Lorem ipsum dolor sit amet, consectetur adipisicing elit, |
| 27 sed do eiusmod tempor incididunt ut labore et dolore magna |
| 28 aliqua. Ut enim ad minim veniam, quis nostrud exercitation |
| 29 ullamco laboris nisi ut aliquip ex ea commodo consequat. |
| 30 </body> |
| 31 </html> |
OLD | NEW |