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

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

Issue 16019004: Text Autosizing: Treat position:absolute/fixed as constrained height. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months 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 <script> 11 <script>
12 if (window.internals) { 12 if (window.internals) {
13 window.internals.settings.setTextAutosizingEnabled(true); 13 window.internals.settings.setTextAutosizingEnabled(true);
14 window.internals.settings.setTextAutosizingWindowSizeOverride(320, 480); 14 window.internals.settings.setTextAutosizingWindowSizeOverride(320, 480);
15 } else if (window.console && console.warn) { 15 } else if (window.console && console.warn) {
16 console.warn("This test depends on the Text Autosizing setting being true, s o run it in DumpRenderTree, or manually enable Text Autosizing, and either use a mobile device with 320px device-width (like Nexus S or iPhone), or define HACK_ FORCE_TEXT_AUTOSIZING_ON_DESKTOP."); 16 console.warn("This test depends on the Text Autosizing setting being true, s o run it in DumpRenderTree, or manually enable Text Autosizing, and either use a mobile device with 320px device-width (like Nexus S or iPhone), or define HACK_ FORCE_TEXT_AUTOSIZING_ON_DESKTOP.");
17 } 17 }
18 </script> 18 </script>
19 19
20 </head> 20 </head>
21 <body> 21 <body>
22 22
23 <div style="position: absolute; 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>
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