Index: LayoutTests/fast/multicol/table-margin-collapse-expected.html |
diff --git a/LayoutTests/fast/multicol/table-margin-collapse-expected.html b/LayoutTests/fast/multicol/table-margin-collapse-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9bc295ddaddae43c547896d24d78ece9a0dc70cb |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/table-margin-collapse-expected.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<style> |
+ .columns { border:2px solid black; width:520px; height:300px } |
+ .block { float:left; width:125px; height:200px; } |
+</style> |
+<p>The four rectangles below should both be at the top of their columns. If one is lower than the |
+ other, the test has failed. The pattern in each column should be the same (orange/yellow).</p> |
+<div class="columns"> |
+ <div class="block" style="background-color:orange;"></div> |
+ <div class="block" style="background-color:yellow;"></div> |
+ <div style="float:left; width:20px; height:1px;"></div> |
+ <div class="block" style="background-color:orange;"></div> |
+ <div class="block" style="background-color:yellow;"></div> |
+</div> |