summaryrefslogtreecommitdiffstats
path: root/layout/reftests/floats/1322843-1a.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/floats/1322843-1a.html')
-rw-r--r--layout/reftests/floats/1322843-1a.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/floats/1322843-1a.html b/layout/reftests/floats/1322843-1a.html
new file mode 100644
index 0000000000..c2f7ba2857
--- /dev/null
+++ b/layout/reftests/floats/1322843-1a.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<title>Bug 1322843 - Intrinsic width with float</title>
+<style>
+ #outer {
+ width: -moz-fit-content;
+ width: fit-content;
+ background: red;
+ }
+ #float1 {
+ float: left;
+ width: 100px;
+ height: 100px;
+ background: green;
+ }
+ #float2 {
+ float: right;
+ width: 100px;
+ height: 100px;
+ background: green;
+ }
+ #inner {
+ width: 200px;
+ height: 100px;
+ clear: both;
+ 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>