summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/309550-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/309550-1.html')
-rw-r--r--layout/reftests/bugs/309550-1.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/bugs/309550-1.html b/layout/reftests/bugs/309550-1.html
new file mode 100644
index 0000000000..a161193d32
--- /dev/null
+++ b/layout/reftests/bugs/309550-1.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<html>
+<head>
+<style type="text/css">
+fieldset {
+ margin: 0; padding: 0;
+ border: none;
+}
+#float {
+ float: left;
+ width: 10em; height: 5em;
+ background-color: green;
+}
+#clear {
+ clear: left;
+}
+#sibling {
+ width: 5em; height: 5em;
+ background-color: blue;
+}
+</style>
+</head>
+<body>
+<fieldset>
+ <div id="float"></div>
+ <div id="clear"></div>
+ <div id="sibling"></div>
+</fieldset>
+</body>
+</html>