summaryrefslogtreecommitdiffstats
path: root/layout/reftests/floats/1260031-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/floats/1260031-1.html')
-rw-r--r--layout/reftests/floats/1260031-1.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/floats/1260031-1.html b/layout/reftests/floats/1260031-1.html
new file mode 100644
index 0000000000..fdb2b99816
--- /dev/null
+++ b/layout/reftests/floats/1260031-1.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Bug 1260031 - Intrinsic width with float</title>
+ <style>
+ #wrapper {
+ background: red;
+ width: -moz-fit-content;
+ width: fit-content;
+ }
+ #left {
+ float: left;
+ width: 50px;
+ height: 50px;
+ background: green;
+ }
+ #right {
+ width: 50px;
+ height: 50px;
+ background: blue;
+ }
+ </style>
+</head>
+<body>
+ <div id="test">
+ <div id="wrapper">
+ <div id="left"></div>
+ <div id="right"></div>
+ </div>
+ </div>
+ <script>
+ document.getElementById("right").style = location.search.slice(1);
+ </script>
+</body>
+</html>