Index: LayoutTests/fast/multicol/vertical-lr/column-count-with-rules-expected.html |
diff --git a/LayoutTests/fast/multicol/vertical-lr/column-count-with-rules-expected.html b/LayoutTests/fast/multicol/vertical-lr/column-count-with-rules-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..18478cdd34aec3564567ee30d4242018430673de |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/vertical-lr/column-count-with-rules-expected.html |
@@ -0,0 +1,71 @@ |
+<!DOCTYPE html> |
+<style> |
+ body { |
+ -webkit-writing-mode: vertical-lr; |
+ } |
+ .columns { |
+ position: relative; |
+ height: 340px; |
+ width: 100px; |
+ border: 10px solid maroon; |
+ margin-right: 1em; |
+ line-height: 20px; |
+ } |
+ .column { |
+ height: 120px; |
+ display: inline-block; |
+ vertical-align: bottom; |
+ } |
+ .column:last-child { |
+ height: 100px; |
+ } |
+ .rule { |
+ width: 100px; |
+ height: 2px; |
+ background-color: black; |
+ position: absolute; |
+ } |
+ .rule1 { top: 109px; } |
+ .rule2 { top: 229px; } |
+</style> |
+<div class="columns"> |
+ <div class="rule rule1"></div> |
+ <div class="rule rule2"></div> |
+ <div class="column"> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ </div><div class="column"> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ </div><div class="column"> |
+ Column text.<br> |
+ Column text.<br> |
+ </div> |
+</div> |
+ |
+<div class="columns" style="direction:rtl;"> |
+ <div class="rule rule1"></div> |
+ <div class="rule rule2"></div> |
+ <div class="column"> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ </div><div class="column"> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ Column text.<br> |
+ </div><div class="column"> |
+ Column text.<br> |
+ Column text.<br> |
+ </div> |
+</div> |