summaryrefslogtreecommitdiffstats
path: root/layout/reftests/floats/1260031-1-ref.html
blob: 8bdbe5f6bb5b75a4d7a8609530be768f3b45e746 (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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Bug 1260031 - Intrinsic width with float</title>
  <style>
    #left {
      display: inline-block;
      width: 50px;
      height: 50px;
      background: green;
    }
    #right {
      display: inline-block;
      width: 50px;
      height: 50px;
      background: blue;
    }
  </style>
</head>
<body>
  <div id="test">
    <div id="wrapper">
      <div id="left"></div><div id="right"></div>
    </div>
  </div>
</body>
</html>