summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ruby/box-properties-4.html
blob: 6e953bc3a128774a1ea07bc90606e3d0f0cf1228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Bug 1055667 - Box properties on ruby boxes</title>
  <link rel="stylesheet" href="common.css">
  <style>
    .inside {
      width: 50px; height: 10px;
      background: black;
    }
  </style>
</head>
<body>
  <div style="width: 80px">
    <ruby style="background: silver; padding: 0 20px; border: 10px solid gray; border-width: 0 10px;"
      ><rb><div class="inside"></div></rb
      ><rb><div class="inside" style="padding: 0 15px;"></div></rb
      ><rb><div class="inside"></div></rb
    ></ruby>
  </div>
</body>
</html>