tor-browser

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

text-group-align-right-vlr.html (697B)


      1 <!DOCTYPE html>
      2 <title>text-group-align: right</title>
      3 <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
      4 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-group-align-property">
      5 <link rel="match" href="text-group-align-right-vlr-ref.html">
      6 <link rel="stylesheet" href="support/test-helpers.css">
      7 <body>
      8 <script src="support/test-helpers.js"></script>
      9 <script>
     10 for (let direction of ["ltr", "rtl"]) {
     11    for (let textAlign of ["start", "end", "left", "right", "center"]) {
     12        generateSimpleTest({ textGroupAlign: "right", writingMode: "vertical-lr", direction, textAlign });
     13    }
     14    document.body.append(document.createElement("br"));
     15 }
     16 </script>
     17 </body>