Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / form-controls-autosizing-textfield-input-elements-expected.html
blobf2fefa072358840f6c2537491052e2ab5c698fd1
1 <!DOCTYPE html>
2 <html style="font-size: 16px">
3 <head>
5 <meta name="viewport" content="width=800">
6 <style>
7 body {
8 width: 800px;
9 margin: 0;
10 overflow-y: hidden;
12 </style>
14 </head>
15 <body>
17 <div style="font-size: 2.5rem">
18 This paragraph should be autosized to 40px computed font-size (16 * 800/320),
19 whereas the input text fields should be rendered at their default font size and
20 the accompanying text below should remain 16px.
21 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
22 incididunt ut labore et dolore magna aliqua.
23 </div>
25 <div>
26 Text
27 <input type="text" value="Default text">
28 </div>
29 <div>
30 Email
31 <input type="email">
32 </div>
33 <div>
34 Number
35 <input type="number">
36 </div>
37 <div>
38 Password
39 <input type="password">
40 </div>
41 <div>
42 URL
43 <input type="url">
44 </div>
46 </body>
47 </html>