summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/412607-1-ref.html
blob: e3a830edbe47e86b28c998bd123d740326dabfd2 (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
<html>
<head>
<style>
  div.wrapper { 
    width:  80px;
    height: 30px;
  }
  div.a, div.b {
    height: 20px;
    display: inline-block;
  }
  div.a {
    width: 20px;
    background: blue;
  }
  div.b { 
    width: 80px; 
    background: green;
  }
</style>
</head>
<body>
  <div class="wrapper">
    <div class="a"></div> <div class="b"></div>
  </div>
</body>
</html>