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

Side by Side Diff: LayoutTests/fast/dynamic/text-combine.html

Issue 799123003: text-combine should scale rather than fall back to none when wide (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove one expected.txt and rebase-update (there was a directory rename) Created 5 years, 10 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/text/font-variant-width.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <meta charset="utf8"> 1 <meta charset="utf8">
2 <style> 2 <style>
3 html { -webkit-writing-mode: vertical-rl; } 3 html { -webkit-writing-mode: vertical-rl; }
4 div { font-family: 'hiragino mincho pro'; font-size: 24px; } 4 div { font-family: 'hiragino mincho pro'; font-size: 24px; }
5 #combine { -webkit-text-combine: horizontal; } 5 .combine { -webkit-text-combine: horizontal; }
6 </style> 6 </style>
7 <p> 7 <p>
8 These two lines should be identical: 8 These two lines should be identical:
9 </p> 9 </p>
10 <div> 10 <div>
11 希薄化後の1株当り利益が<span id="combine">3.67</span>ドルでした。 11 希薄化後の1株当り利益が<span id="combine" class="combine">3.67</span>ドルでした。
12 </div> 12 </div>
13 <div> 13 <div>
14 希薄化後の1株当り利益が<span>3.667</span>ドルでした。 14 希薄化後の1株当り利益が<span class="combine">3.667</span>ドルでした。
15 </div> 15 </div>
16 <script> 16 <script>
17 document.body.offsetTop; 17 document.body.offsetTop;
18 document.getElementById("combine").textContent = "3.667"; 18 document.getElementById("combine").textContent = "3.667";
19 </script> 19 </script>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/text/font-variant-width.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698