Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: LayoutTests/fast/text-autosizing/clusters-sufficient-width-expected.html

Issue 25512005: Enable experimental support for sub-pixel font scaling (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 4
5 <meta name="viewport" content="width=800"> 5 <meta name="viewport" content="width=800">
6 <style> 6 <style>
7 html { font-size: 16px; } 7 html { font-size: 16px; }
8 body { width: 800px; margin: 0; overflow-y: hidden; } 8 body { width: 800px; margin: 0; overflow-y: hidden; }
9 </style> 9 </style>
10 10
11 </head> 11 </head>
12 <body> 12 <body>
13 13
14 <div style="position: absolute; overflow: auto; width: 400px; font-size: 20px"> 14 <div style="position: absolute; overflow: auto; width: 400px; font-size: 20px">
15 This text should be autosized to 20px computed font size (16 * 400/320), sin ce the position:absolute causes this to be a new cluster. 15 This text should be autosized to 20px computed font size (16 * 400/320), sin ce the position:absolute causes this to be a new cluster.
16 </div> 16 </div>
17 17
18 <div style="margin-top: 100px; float: left; width: 420px; font-size: 21px"> 18 <div style="margin-top: 100px; float: left; width: 420px; font-size: 21px">
19 This text should be autosized to 21px computed font size (16 * 420/320), sin ce the float:left causes this to be a new cluster. 19 This text should be autosized to 21px computed font size (16 * 420/320), sin ce the float:left causes this to be a new cluster.
20 </div> 20 </div>
21 21
22 <table> 22 <table cellspacing="0" cellpadding="0">
23 <tr> 23 <tr>
24 <td style="width: 380px; font-size: 19px"> 24 <td style="width: 380px; font-size: 19px">
25 This text should be autosized to 19px computed font size (16 * 380/3 20), since being a table cell causes this to be a new cluster. 25 This text should be autosized to 19px computed font size (16 * 380/3 20), since being a table cell causes this to be a new cluster.
26 </td> 26 </td>
27 </tr> 27 </tr>
28 </table> 28 </table>
29 29
30 <div style="-webkit-writing-mode: vertical-rl; height: 440px"> 30 <div style="-webkit-writing-mode: vertical-rl; height: 440px">
31 This text should be autosized to 22px computed font size (16 * 440/320), sin ce the perpendicular writing-mode compared to its containing block causes this t o be a new cluster. Unfortunately due to <a href="https://bugs.webkit.org/show_b ug.cgi?id=96557">http://webkit.org/b/96557</a> the height:440px is incorrectly i nterpreted as constraining the logicalHeight, so it doesn't get autosized. 31 This text should be autosized to 22px computed font size (16 * 440/320), sin ce the perpendicular writing-mode compared to its containing block causes this t o be a new cluster. Unfortunately due to <a href="https://bugs.webkit.org/show_b ug.cgi?id=96557">http://webkit.org/b/96557</a> the height:440px is incorrectly i nterpreted as constraining the logicalHeight, so it doesn't get autosized.
32 </div> 32 </div>
33 33
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698