gecko-dev/layout/reftests/floats/1322843-1c.html
Xidorn Quan c7690fb4ef Bug 1322843 part 3 - Add reftests for this bug. r=dbaron
Test 1322843-1[a-d] fail before part 2, while the other two tests fail
before patch for bug 1260031.

MozReview-Commit-ID: 9QfBvtwQOvP

--HG--
extra : rebase_source : d42b2ace21fb2a9e896f89f97b01c2e0584c7313
2016-12-22 18:32:08 +11:00

27 lines
504 B
HTML

<!DOCTYPE html>
<title>Bug 1322843 - Intrinsic width with float</title>
<style>
#outer {
width: -moz-fit-content;
width: fit-content;
background: red;
}
#float {
float: right;
width: 200px;
height: 100px;
background: green;
}
#inner {
width: 200px;
height: 100px;
clear: right;
overflow: hidden; /* to establish block formatting context */
background: green;
}
</style>
<div id="outer">
<div id="float"></div>
<div id="inner"></div>
</div>