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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/international/vertical-text-metrics-test.html

Issue 1751973003: Modernize Japanese system font fallback list for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html lang="ja">
3 <head> 3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
5 <title>Vertical text metrics test</title> 5 <title>Vertical text metrics test</title>
6 <script> 6 <script>
7 function print(message) 7 function print(message)
8 { 8 {
9 var paragraph = document.createElement("li"); 9 var paragraph = document.createElement("li");
10 paragraph.appendChild(document.createTextNode(message)); 10 paragraph.appendChild(document.createTextNode(message));
11 document.getElementById("console").appendChild(paragraph); 11 document.getElementById("console").appendChild(paragraph);
12 } 12 }
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <hr> 60 <hr>
61 <p>Complex text path</p> 61 <p>Complex text path</p>
62 <span id="horizontal_TB_complex">string「あ、変っ!」。</span><br> 62 <span id="horizontal_TB_complex">string「あ、変っ!」。</span><br>
63 <span id="vertical_RL_complex">string「あ、変っ!」。</span><br> 63 <span id="vertical_RL_complex">string「あ、変っ!」。</span><br>
64 <span id="vertical_LR_complex">string「あ、変っ!」。</span><br> 64 <span id="vertical_LR_complex">string「あ、変っ!」。</span><br>
65 <br> 65 <br>
66 <hr> 66 <hr>
67 <p><ol id=console></ol></p> 67 <p><ol id=console></ol></p>
68 </body> 68 </body>
69 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698