Chromium Code Reviews| Index: LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html |
| diff --git a/LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html b/LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..00e3379a9b915d7bab27743ac8962583e31a74d2 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html |
| @@ -0,0 +1,30 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<link href="resources/grid.css" rel="stylesheet"> |
| +<style> |
| +.grid |
| +{ |
| + -webkit-column-width: 1em; |
| + -moz-column-width: 1em; |
| + column-width: 1em; |
| +} |
| +.inline-grid |
| +{ |
| + -webkit-column-width: 1em; |
| + -moz-column-width: 1em; |
| + column-width: 1em; |
|
Julien - ping for review
2014/08/20 18:14:48
Let's get rid of the implicit assumption that the
Sunil Ratnu
2014/08/21 05:11:17
Thanks Julien for the review. I have made the sugg
|
| +} |
| +</style> |
| + |
| +<body> |
| + |
| +<div class='grid'> |
| +AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDD |
| +</div> |
| + |
| +<div class='inline-grid'> |
| +AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDD |
| +</div> |
| + |
| +</body> |
| +</html> |