Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / form-controls-autosizing-checkbox-input-element.html
blob7ec0b46ba3a3e01dad85088a03ec00370e03dedf
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 check boxes below should be rendered at their default size and
22 the accompanying text below should remain 16px.
23 Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
24 incididunt ut labore et dolore magna aliqua.
25 </div>
26 <div>
27 Check one or more:
28 <input type="checkbox" name="vehicle" value="Bike">I have a bike<br/>
29 <input type="checkbox" name="vehicle" value="Car">I have a car <br/>
30 </div>
32 </body>
33 </html>