tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

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>&nbsp;&nbsp;12</span><span>34&nbsp;&nbsp;</span><span>5&nbsp;&nbsp;&nbsp;&nbsp;6</span>えお</div>
     22  <div id=ref><span>&nbsp;&nbsp;12</span><span>34&nbsp;&nbsp;</span><span>5&nbsp;&nbsp;&nbsp;&nbsp;6</span>えお</div>
     23 </div>