Index: LayoutTests/fast/multicol/composited-layer.html |
diff --git a/LayoutTests/fast/multicol/composited-layer.html b/LayoutTests/fast/multicol/composited-layer.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5b5c8ec5fa3b3eb90bfc38b0c4f2f8ffcc853bd1 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/composited-layer.html |
@@ -0,0 +1,29 @@ |
+<!DOCTYPE html> |
+<style> |
+#multicol { |
+ -webkit-column-count: 2; |
+ -webkit-column-gap: 0; |
+ column-count: 2; |
+ column-gap: 0; |
+ width: 200px; |
+ height: 100px; |
+ transform: translateZ(0); |
+} |
+ |
+.filler { |
+ width: 100px; |
+ height: 100px; |
+} |
+</style> |
+<div id="multicol"> |
+ <div class="filler"></div> |
+ <div class="filler"></div> |
+</div> |
+<div id="layers"></div> |
+<script> |
+if (window.testRunner) |
+ testRunner.dumpAsText(); |
+ |
+if (window.internals) |
+ document.getElementById("layers").innerText = internals.layerTreeAsText(document); |
+</script> |