Index: LayoutTests/fast/multicol/newmulticol/avoid-column-break-inside.html |
diff --git a/LayoutTests/fast/multicol/newmulticol/avoid-column-break-inside.html b/LayoutTests/fast/multicol/newmulticol/avoid-column-break-inside.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..91ef9d2054b9d6ea7f0460428cf521ac189c7bbb |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/newmulticol/avoid-column-break-inside.html |
@@ -0,0 +1,16 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>Avoid column break inside block</title> |
+ <script> |
+ if (window.internals) |
+ internals.settings.setRegionBasedColumnsEnabled(true); |
+ </script> |
+ </head> |
+ <body> |
+ <p>There should be a blue square below.</p> |
+ <div style="-webkit-columns:4; columns:4;"> |
eseidel
2014/02/26 00:09:04
In general I think we can start to remove all thes
mstensho (USE GERRIT)
2014/02/26 00:19:43
We cannot do that yet. They are still prefixed in
|
+ <div style="width:100px; height:100px; -webkit-column-break-inside:avoid; break-inside:avoid; background:blue;"></div> |
+ </div> |
+ </body> |
+</html> |