Chromium Code Reviews| Index: LayoutTests/fast/css-grid-layout/anonymous-grid-items-expected.html |
| diff --git a/LayoutTests/fast/css-grid-layout/anonymous-grid-items-expected.html b/LayoutTests/fast/css-grid-layout/anonymous-grid-items-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..dfff84ddeb2c2638e888ae358634aa70c3b86648 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css-grid-layout/anonymous-grid-items-expected.html |
| @@ -0,0 +1,40 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| + <link href="resources/grid.css" rel="stylesheet"> |
| + <style type="text/css"> |
|
Julien - ping for review
2014/03/05 16:14:02
Unneeded type attribute.
|
| + #grid-rows { |
| + grid-auto-flow: row; |
| + } |
| + |
| + #grid-columns { |
| + grid-auto-flow: column; |
| + } |
| + </style> |
| +</head> |
| +<body> |
| + <div>Checks that anonymous grid items are suppported.</div> |
| + <div id="grid-rows" class="grid"> |
| + <div>anonymous item</div> |
| + |
| + <div>regular item</div> |
| + |
| + <div>anonymous item anonymous item anonymous item</div> |
|
Julien - ping for review
2014/03/05 16:14:02
Does that really match the test case? (it seems to
|
| + |
| + <div>regular item</div> |
| + |
| + <div>anonymous item<br>anonymous item</div> |
| + </div> |
| + <div id="grid-columns" class="grid"> |
| + <div>anonymous item</div> |
| + |
| + <div>regular item</div> |
| + |
| + <div>anonymous item anonymous item anonymous item</div> |
| + |
| + <div>regular item</div> |
| + |
| + <div>anonymous item<br>anonymous item</div> |
| + </div> |
| +</body> |
| +</html> |