summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ruby/relative-positioning-1-ref.html
blob: 1819ba920e2bc35e8d0984d95057be67be312c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Bug 1055658 - Relative positioning for ruby</title>
  <script type="text/javascript" src="utils.js"></script>
</head>
<body>
  <div style="height: 80px; line-height: 80px; width: 50px; text-align: center">
    <span id="inline" style="position: relative">
      <div id="annotation" style="position: absolute; width: 50px; top: -100%">
        a<span style="position: relative; top: -10px;">b</span>c
      </div>
      base
    </span>
  </div>
  <script type="text/javascript">
    makeBSizeMatchInlineBox(document.getElementById('annotation'),
                            document.getElementById('inline'));
  </script>
</body>
</html>