tor-browser

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

svg-aliasing-002-ref.html (716B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Writing modes test reference</title>
      4 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
      5 <p>The test passes if you can see “1 2 3” (without the quotation marks) 3 times below going top-to-bottom.
      6 If any of them is reversed (going bottom to top), the test fails.</p>
      7 <svg
      8   xmlns="http://www.w3.org/2000/svg"
      9   width="300"
     10   height="600">
     11 <g>
     12  <text x="50" y="50" style="writing-mode: vertical-rl; fill: blue;">1 2 3</text>
     13 </g>
     14 <g>
     15  <text x="125" y="50" style="writing-mode: vertical-rl; fill: blue;">1 2 3</text>
     16 </g>
     17 <g>
     18  <text x="200" y="80" style="writing-mode: vertical-rl; direction: rtl; fill: blue;">3 2 1</text>
     19 </g>
     20 </svg>