tor-browser

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

ruby-autohide-002.html (1297B)


      1 <!DOCTYPE html>
      2 <html lang="ja">
      3 <head>
      4  <meta charset="UTF-8">
      5  <title>CSS Test: Autohide ruby annotations which are identical to their bases</title>
      6  <link rel="author" title="Xidorn Quan" href="mailto:quanxunzhen@gmail.com">
      7  <link rel="help" href="http://www.w3.org/TR/css-ruby-1/#autohide">
      8  <link rel="match" href="ruby-autohide-002-ref.html">
      9  <script>
     10    window.onload = function() {
     11      // Force a reflow before changes.
     12      document.body.clientWidth;
     13      var elems = document.querySelectorAll('[data-content]');
     14      for (var i = 0; i < elems.length; i++) {
     15        elems[i].textContent = elems[i].dataset.content;
     16      }
     17    };
     18  </script>
     19 </head>
     20 <body>
     21  <p><ruby>
     22    <rb></rb><rb></rb><rb></rb><rb></rb>
     23    <rt></rt><rt data-content="ri"></rt><rt></rt><rt></rt>
     24  </ruby></p>
     25  <p><ruby>
     26    <rb></rb><rb data-content="ri"></rb><rb></rb><rb></rb>
     27    <rt></rt><rt></rt><rt></rt><rt></rt>
     28  </ruby></p>
     29  <p><ruby>
     30    <rb></rb><rb></rb><rb></rb><rb></rb>
     31    <rt></rt><rt data-content="り">ri</rt><rt></rt><rt></rt>
     32  </ruby></p>
     33  <p><ruby>
     34    <rb></rb><rb data-content="り">ri</rb><rb></rb><rb></rb>
     35    <rt></rt><rt></rt><rt></rt><rt></rt>
     36  </ruby></p>
     37 </body>
     38 </html>