tor-browser

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

ruby-overhang-dynamic.html (634B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <meta charset="UTF-8">
      4 <title>Tests for ruby-overhang: none -> auto</title>
      5 <link rel="help" href="https://drafts.csswg.org/css-ruby-1/#ruby-overhang">
      6 <link rel="match" href="ruby-overhang-dynamic-ref.html">
      7 <link rel="stylesheet" href="/fonts/ahem.css">
      8 <style>
      9  .reftest-wait .overhangNone {
     10    ruby-overhang: none;
     11  }
     12  div {
     13    font: 16px/5 Ahem;
     14  }
     15  ruby, rt {
     16    color: transparent;
     17  }
     18 </style>
     19 <div class=overhangNone>X<ruby>X<rt>XXXX</rt></ruby>X</div>
     20 <script>
     21  requestAnimationFrame(() => {
     22    document.documentElement.classList.remove('reftest-wait');
     23  });
     24 </script>