Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text-autosizing / various-font-sizes.html
blob663b83efeac2c792015779d767c35e135b00b741
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 <script src="resources/autosizingTest.js"></script>
12 </head>
13 <body>
15 <div style="font-size: 8px">
16 This should be scaled by 2.5x to become 20px (since it was small, it got fully multiplied).
17 </div>
18 <div style="font-size: 16px">
19 This should be scaled by 2.5x to become 40px (since it was small, it got fully multiplied).
20 </div>
21 <div style="font-size: 32px">
22 This should be scaled by 1.5x to become 48px (since it was medium size, it got multiplied less).
23 </div>
24 <div style="font-size: 48px">
25 This should be scaled by 1.17x to become 56px (since it was large, it got multiplied much less).
26 </div>
27 <div style="font-size: 64px">
28 This should not be scaled at all, hence remain 64px (since it was huge, it didn't get multiplied at all).
29 </div>
31 </body>
32 </html>