summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1613380.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/1613380.html')
-rw-r--r--layout/reftests/bugs/1613380.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1613380.html b/layout/reftests/bugs/1613380.html
new file mode 100644
index 0000000000..78dfc054b9
--- /dev/null
+++ b/layout/reftests/bugs/1613380.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<style>
+.item { background: pink; margin-top: auto}
+.strut {
+ visibility: collapse;
+ margin-left: auto; /* This should have no effect (but it does!) */
+}
+</style>
+<div style="display:flex; flex-direction: column;
+ height: 100px; border: 1px solid black">
+ <div class="item">This text should be bottom-aligned</div>
+ <div class="strut"></div>
+</div>