| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> |
| 3 <title>CSS Writing Modes Test: Test orientation of characters where vo=Tu (147 c
ode points in U+3001-1F201).</title> |
| 4 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-orientatio
n"> |
| 5 <meta name="assert" content="Test orientation of characters where vo=Tu (147 cod
e points in U+3001-1F201)"> |
| 6 <meta name="flags" content="dom font"> |
| 7 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> |
| 8 <script src="../../../resources/testharness.js"></script> |
| 9 <script src="../../../resources/testharnessreport.js"></script> |
| 10 <style> |
| 11 @font-face { |
| 12 font-family: "orientation"; |
| 13 src: url("support/adobe-fonts/CSSHWOrientationTest.otf"); |
| 14 } |
| 15 .test { |
| 16 font: 16px/1 "orientation"; |
| 17 height: 17em; |
| 18 -webkit-writing-mode: vertical-rl; |
| 19 } |
| 20 .line { |
| 21 white-space: pre; |
| 22 } |
| 23 .U { |
| 24 -webkit-text-orientation: upright; |
| 25 } |
| 26 .R { |
| 27 -webkit-text-orientation: sideways-right; |
| 28 } |
| 29 #details { |
| 30 margin: 1em .5em; |
| 31 } |
| 32 summary { |
| 33 font-size: 1.2em; |
| 34 font-weight: bold; |
| 35 margin-top: .5em; |
| 36 } |
| 37 </style> |
| 38 <div id="log"></div> |
| 39 <div id="details"></div> |
| 40 <div id="container"> |
| 41 <div data-vo="Tu" class="test"> |
| 42 <div data-block="CJK"> |
| 43 <div class="line">、。</div> |
| 44 </div> |
| 45 <div data-block="Hiragana"> |
| 46 <div class="line">ぁぃぅぇぉっゃゅょゎゕゖ゛゜</div> |
| 47 </div> |
| 48 <div data-block="Katakana"> |
| 49 <div class="line">ァィゥェォッャュョヮヵヶ</div> |
| 50 </div> |
| 51 <div data-block="Bopomofo"> |
| 52 <div class="line">ㄧ</div> |
| 53 </div> |
| 54 <div data-block="Katakana"> |
| 55 <div class="line">ㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ</div> |
| 56 </div> |
| 57 <div data-block="CJK"> |
| 58 <div class="line">㌀㌁㌂㌃㌄㌅㌆㌇㌈㌉㌊㌋㌌㌍㌎㌏㌐㌑㌒㌓㌔㌕㌖㌗㌘㌙㌚㌛㌜㌝㌞㌟</div> |
| 59 <div class="line">㌠㌡㌢㌣㌤㌥㌦㌧㌨㌩㌪㌫㌬㌭㌮㌯㌰㌱㌲㌳㌴㌵㌶㌷㌸㌹㌺㌻㌼㌽㌾㌿</div> |
| 60 <div class="line">㍀㍁㍂㍃㍄㍅㍆㍇㍈㍉㍊㍋㍌㍍㍎㍏㍐㍑㍒㍓㍔㍕㍖㍗㍻㍼㍽㍾㍿</div> |
| 61 </div> |
| 62 <div data-block="Small"> |
| 63 <div class="line">﹐﹑﹒</div> |
| 64 </div> |
| 65 <div data-block="Halfwidth"> |
| 66 <div class="line">!,.?</div> |
| 67 </div> |
| 68 <div data-block="Enclosed"> |
| 69 <div class="line">🈀🈁</div> |
| 70 </div> |
| 71 </div> |
| 72 </div> |
| 73 <script src="support/text-orientation.js"></script> |
| OLD | NEW |