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