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