tor-browser

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

svg-aliasing-001-ref.html (790B)


      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” 6 times below (without the quotation marks). If any of them is reversed (“3 2 1”) the test fails.</p>
      6 <svg
      7   xmlns="http://www.w3.org/2000/svg"
      8   width="300"
      9   height="600">
     10 <g>
     11  <text x="0" y="50" style="fill: blue;">1 2 3</text>
     12  <text x="0" y="150" style="fill: blue;">1 2 3</text>
     13 </g>
     14 <g>
     15  <text x="150" y="50" style="fill: blue;">1 2 3</text>
     16  <text x="150" y="150" style="fill: blue;">1 2 3</text>
     17 </g>
     18 <g>
     19  <text x="300" y="50" style="direction: rtl; fill: blue;">3 2 1</text>
     20  <text x="300" y="150" style="direction: rtl; fill: blue;">3 2 1</text>
     21 </g>
     22 </svg>