tcy-white-space-processing-002-ref.html (775B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>Test Reference</title> 4 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> 5 <style> 6 .v-rl { 7 writing-mode: vertical-rl; 8 width: 200px; 9 } 10 span { 11 -webkit-text-combine: horizontal; /*testing the layout text-combine, not it's support in general*/ 12 text-combine-upright: all; 13 white-space: pre; 14 } 15 #test { color: blue; } 16 #ref { color: orange; } 17 </style> 18 <p>Test passes if the blue and orange lines of text are identical. 19 20 <div class=v-rl> 21 <div id=test>あ<span> 12</span>い<span>34 </span>う<span>5 6</span>えお</div> 22 <div id=ref>あ<span> 12</span>い<span>34 </span>う<span>5 6</span>えお</div> 23 </div>