Index: third_party/WebKit/LayoutTests/fast/multicol/forced-break-after-last-block-before-spanner.html |
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/forced-break-after-last-block-before-spanner.html b/third_party/WebKit/LayoutTests/fast/multicol/forced-break-after-last-block-before-spanner.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e6edc0dc9c61ed80dc9f71c080a222e6f8525a82 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/multicol/forced-break-after-last-block-before-spanner.html |
@@ -0,0 +1,16 @@ |
+<!DOCTYPE html> |
+<style> |
+ .block { width:50px; height:25px; break-inside:avoid; } |
+</style> |
+<p>There should be a hotpink square below.</p> |
+<div style="columns:3;"> |
+ <div style="break-after:column;"> |
+ <div class="block"></div> |
+ <div class="block" style="background:hotpink;"></div> |
+ <div class="block"></div> |
+ <div class="block"></div> |
+ <div class="block"></div> |
+ </div> |
+ <div style="column-span:all;"></div> |
+ <div class="block" style="background:hotpink;"></div> |
+</div> |