summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ruby/relative-positioning-1.html
blob: 66dcf62c7cc0f49248e1db5bd7667b829c881848 (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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Bug 1055658 - Relative positioning for ruby</title>
  <link rel="stylesheet" href="common.css">
  <style>
    body {
      line-height: 80px;
    }
    rtc, rt {
      font-size: 100% !important;
      line-height: 1 !important;
    }
  </style>
</head>
<body>
  <ruby style="position: relative;">
    <rb>base</rb>
    <rtc><rt>a<span style="position: relative; top: -10px;">b</span>c</rt></rtc>
    <rtc><div style="width: 50px; height: 0;"></div></rtc>
  </ruby>
</body>
</html>