Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / floats / 1322843-1c.html
blob2625f847df658b3d6977c65d7de026b5bdda1a6f
1 <!DOCTYPE html>
2 <title>Bug 1322843 - Intrinsic width with float</title>
3 <style>
4 #outer {
5 width: -moz-fit-content;
6 width: fit-content;
7 background: red;
9 #float {
10 float: right;
11 width: 200px;
12 height: 100px;
13 background: green;
15 #inner {
16 width: 200px;
17 height: 100px;
18 clear: right;
19 overflow: hidden; /* to establish block formatting context */
20 background: green;
22 </style>
23 <div id="outer">
24 <div id="float"></div>
25 <div id="inner"></div>
26 </div>