| 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..5edad0135ae91f7415d0d5b83fd2f7b8fe405858
|
| --- /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 CCCCCCCCCC DDDDDDDDDD
|
| +</div>
|
| +
|
| +<div class='inline-grid'>
|
| +AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD
|
| +</div>
|
| +
|
| +</body>
|
| +</html>
|
|
|