tor-browser

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

font-size-adjust-text-orientation.html (708B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>font-size-adjust and text-orientation</title>
      4 <link rel="author" title="ChangSeok Oh" href="mailto:changseok@webkit.org" />
      5 <link rel="help" href="https://www.w3.org/TR/css-fonts-5/#font-size-adjust-prop" />
      6 <link rel="match" href="font-size-adjust-text-orientation-ref.html" />
      7 <meta name="assert" content="Test checks whether text-orientation affects font-size-adjust.">
      8 <style>
      9 @font-face {
     10  font-family: IcTestFullWidth;
     11  src: url(../css-values/resources/IcTestFullWidth.woff2);
     12 }
     13 div {
     14  font-family: IcTestFullWidth;
     15  font-size: 40px;
     16  font-size-adjust: ic-width 1.0;
     17  writing-mode: vertical-rl;
     18  text-orientation: upright;
     19 }
     20 </style>
     21 <div></div>