summaryrefslogtreecommitdiffstats
path: root/layout/reftests/columns/min-width-1a.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/columns/min-width-1a.html')
-rw-r--r--layout/reftests/columns/min-width-1a.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/columns/min-width-1a.html b/layout/reftests/columns/min-width-1a.html
new file mode 100644
index 0000000000..60aa2ea352
--- /dev/null
+++ b/layout/reftests/columns/min-width-1a.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <style>
+ div { column-count:2; column-gap:0; border:2px solid black; height:200px; }
+ div.gap { column-gap:80px; }
+ span { display:inline-block; width:100px; }
+ </style>
+</head>
+<body>
+ <table cellpadding=0 cellspacing=0 width="1"><tr><td><div>
+ <span></span>
+ </div></tr></td></table>
+ <table cellpadding=0 cellspacing=0 width="1"><tr><td><div class="gap">
+ <span></span>
+ </div></tr></td></table>
+</body>
+</html>