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

Side by Side Diff: LayoutTests/fast/text-autosizing/clusters-sufficient-width.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
(...skipping 10 matching lines...) Expand all
21 <body> 21 <body>
22 22
23 <div style="position: absolute; overflow: auto; width: 400px"> 23 <div style="position: absolute; overflow: auto; width: 400px">
24 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. 24 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.
25 </div> 25 </div>
26 26
27 <div style="margin-top: 100px; float: left; width: 420px"> 27 <div style="margin-top: 100px; float: left; width: 420px">
28 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. 28 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.
29 </div> 29 </div>
30 30
31 <table> 31 <table cellspacing="0" cellpadding="0">
32 <tr> 32 <tr>
33 <td style="width: 380px"> 33 <td style="width: 380px;">
34 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. 34 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.
35 </td> 35 </td>
36 </tr> 36 </tr>
37 </table> 37 </table>
38 38
39 <div style="-webkit-writing-mode: vertical-rl; height: 440px"> 39 <div style="-webkit-writing-mode: vertical-rl; height: 440px">
40 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. 40 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.
41 </div> 41 </div>
42 42
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698