Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / form-controls-autosizing-button-input-elements.html
blob38bf03b90d9e55b36629bc7a410108bce2a9bb7d
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 <script src="resources/autosizingTest.js"></script>
16 </head>
17 <body>
19 <div>
20 This paragraph should be autosized to 40px computed font-size (16 * 800/320),
21 whereas the buttons below should be rendered at their default font size and
22 the accompanying text below should remain 16px.
23 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
24 tempor incididunt ut labore et dolore magna aliqua.
25 </div>
27 <div>
28 Submit button
29 <input type="submit" value="Find">
30 </div>
31 <div>
32 Simple button
33 <input type="button" value="Button">
34 </div>
35 <div>
36 Reset button
37 <input type="reset" value="Reset">
38 </div>
39 <div>
40 Inline button
41 <button>InlineButton</button>
42 </div>
44 </body>
45 </html>