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..f81664f268ee40fbeed8dd1a40f234ad27ad559b |
| --- /dev/null |
| +++ b/LayoutTests/fast/css-grid-layout/column-property-should-not-apply-on-grid-container.html |
| @@ -0,0 +1,29 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<link href="resources/grid.css" rel="stylesheet"> |
| +<style> |
| +.grid, .inline-grid |
| +{ |
| + width: 20em; |
| + -webkit-column-count: 2; /* Chrome, Safari, Opera */ |
| + -moz-column-count: 2; /* Firefox */ |
| + column-count: 2; |
| + |
| + -webkit-column-gap: 100px; /* Chrome, Safari, Opera */ |
| + -moz-column-gap: 100px; /* Firefox */ |
| + column-gap: 100px; |
| +} |
| +</style> |
| + |
| +<body> |
| + |
| +<div class='grid'> |
| +AAAAAAAAAA BBBBBBBBBB |
|
Julien - ping for review
2014/08/21 15:23:48
I would have left the content untouched. The reaso
Sunil Ratnu
2014/08/22 04:57:30
Done.
|
| +</div> |
| + |
| +<div class='inline-grid'> |
| +AAAAAAAAAA BBBBBBBBBB |
| +</div> |
| + |
| +</body> |
| +</html> |