Index: LayoutTests/fast/multicol/composited-layer-single-fragment.html |
diff --git a/LayoutTests/fast/multicol/composited-layer-single-fragment.html b/LayoutTests/fast/multicol/composited-layer-single-fragment.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5b014ccc5d13ebf2f6d724ccd24e8da8a0ef0d0c |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/composited-layer-single-fragment.html |
@@ -0,0 +1,35 @@ |
+<!DOCTYPE html> |
+<style> |
+.multicol { |
+ width: 60px; |
+ -webkit-column-width: 20px; |
+ -webkit-column-gap: 0; |
+ column-fill: auto; |
+ height: 60px; |
+} |
+.square { |
+ width: 20px; |
+ height: 20px; |
+ background: green; |
+} |
+.layer { will-change: transform; } |
+</style> |
+ |
+<p>There should a green square below.</p> |
+<div class="multicol"> |
+ <div class="square"></div> |
+ <div class="square"></div> |
+ <div class="layer"> <!-- bottom of first column --> |
+ <div class="square"></div> |
+ </div> |
+ <div class="square"></div> |
+ <div class="layer"> <!-- middle of second column --> |
+ <div class="square"></div> |
+ </div> |
+ <div class="square"></div> |
+ <div class="layer"> <!-- entire third column --> |
+ <div class="square"></div> |
+ <div class="square"></div> |
+ <div class="square"></div> |
+ </div> |
+</div> |