Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / various-font-sizes-expected.html
blob1b9267c4e224439dd070cbc077c6e54923f89186
1 <!DOCTYPE html>
2 <html>
3 <head>
5 <meta name="viewport" content="width=800">
6 <style>
7 body { width: 800px; margin: 0; overflow-y: hidden; }
8 </style>
10 </head>
11 <body>
13 <div style="font-size: 20px">
14 This should be scaled by 2.5x to become 20px (since it was small, it got fully multiplied).
15 </div>
16 <div style="font-size: 40px">
17 This should be scaled by 2.5x to become 40px (since it was small, it got fully multiplied).
18 </div>
19 <div style="font-size: 48px">
20 This should be scaled by 1.5x to become 48px (since it was medium size, it got multiplied less).
21 </div>
22 <div style="font-size: 56px">
23 This should be scaled by 1.17x to become 56px (since it was large, it got multiplied much less).
24 </div>
25 <div style="font-size: 64px">
26 This should not be scaled at all, hence remain 64px (since it was huge, it didn't get multiplied at all).
27 </div>
29 </body>
30 </html>