Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / form-controls-autosizing-radio-input-element-expected.html
blob8dbdceca161ac723bd39546f766658db2b049179
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 radio buttons below should be rendered at their default 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>
24 <div>
25 Select one of:<br/>
26 <input type="radio" id="radio1" checked="checked"/>
27 <label for="radio1">Radio1</label><br/>
28 <input type="radio" id="radio2"/>
29 <label for="radio2">Radio2</label><br/>
30 </div>
32 </body>
33 </html>