summaryrefslogtreecommitdiffstats
path: root/layout/reftests/floats/1322843-1b.html
blob: 6ab8e1b42a22c4028d6cb403845260cd2f74b547 (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
<!DOCTYPE html>
<title>Bug 1322843 - Intrinsic width with float</title>
<style>
  #outer {
    width: -moz-fit-content;
    width: fit-content;
    background: red;
  }
  #float {
    float: left;
    width: 200px;
    height: 100px;
    background: green;
  }
  #inner {
    width: 200px;
    height: 100px;
    clear: left;
    overflow: hidden; /* to establish block formatting context */
    background: green;
  }
</style>
<div id="outer">
  <div id="float"></div>
  <div id="inner"></div>
</div>