| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-inherit-initial-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-inherit-initial-crash.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-inherit-initial-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..634afa3469607f1bd40745d3779ddf8592a00b81
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-auto-repeat-inherit-initial-crash.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +<link href="resources/grid.css" rel="stylesheet">
|
| +<style>
|
| +.autoFillColumns { grid-template-columns: 100px repeat(auto-fill, 50px); }
|
| +.autoFitRows { grid-template-rows: 100px repeat(auto-fit, 50px); }
|
| +
|
| +</style>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.dumpAsText();
|
| +</script>
|
| +<p>The test PASS if it does not trigger an ASSERT on Debug builds.</p>
|
| +<div class="grid autoFillColumns" style="grid-template-columns: inherit;">
|
| +<div class="grid autoFitRows" style="grid-template-rows: initial;">
|
| +</div>
|
|
|