summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/816876-1-ref.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/816876-1-ref.xhtml')
-rw-r--r--layout/reftests/bugs/816876-1-ref.xhtml47
1 files changed, 47 insertions, 0 deletions
diff --git a/layout/reftests/bugs/816876-1-ref.xhtml b/layout/reftests/bugs/816876-1-ref.xhtml
new file mode 100644
index 0000000000..e70498b96c
--- /dev/null
+++ b/layout/reftests/bugs/816876-1-ref.xhtml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <style>
+ .container {
+ width: 40px;
+ height: 14px;
+ border: 2px solid green;
+ margin-bottom: 2px;
+ }
+ .a {
+ width: 16px;
+ height: 10px;
+ background: blue;
+ min-width: 0;
+ border: 2px solid lightblue;
+ }
+ .b {
+ width: 16px;
+ height: 10px;
+ background: purple;
+ min-width: 0;
+ border: 2px solid slateblue;
+ }
+ .aKid {
+ margin-left: 10px;
+ margin-top: 2px;
+ width: 16px;
+ height: 6px;
+ background: yellow;
+ border: 1px solid black;
+ }
+ .a, .b { float: left; }
+ </style>
+ </head>
+ <body>
+ <div class="container">
+ <div class="a"><div class="aKid"/></div>
+ <div class="b"></div>
+ </div>
+
+ </body>
+</html>