Index: LayoutTests/fast/multicol/flexbox-with-overflow-auto-child-crash.html |
diff --git a/LayoutTests/fast/multicol/flexbox-with-overflow-auto-child-crash.html b/LayoutTests/fast/multicol/flexbox-with-overflow-auto-child-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c28efbfb215145d6914bd18036dfe8b0d23879b4 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/flexbox-with-overflow-auto-child-crash.html |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+<script> |
+ if (window.testRunner) |
+ testRunner.dumpAsText(); |
+</script> |
+<p>PASS if no crash or assertion failure.</p> |
+<div style="-webkit-column-count:3;"> |
+ <div style="display:flex; outline-style:groove;"> |
+ <ol> |
+ <div style="display:list-item; -webkit-column-count:2; -webkit-text-emphasis:filled gray;"> |
+ <div style="overflow-y:auto;"> |
+ <div style="-webkit-column-span:all;"></div> |
+ |
+ </div> |
+ </div> |
+ </ol> |
+ </div> |
+</div> |