| Index: LayoutTests/fast/css-grid-layout/whitespace-in-grid-item.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/whitespace-in-grid-item.html b/LayoutTests/fast/css-grid-layout/whitespace-in-grid-item.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5892ef05eb16ec9cf45b7c5e9c5f467e2800502f
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css-grid-layout/whitespace-in-grid-item.html
|
| @@ -0,0 +1,24 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<script>
|
| +if (window.testRunner)
|
| + testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1);
|
| +</script>
|
| +<link href="resources/grid.css" rel="stylesheet">
|
| +<style>
|
| + .grid {
|
| + white-space: pre;
|
| + }
|
| + .a {
|
| + height: 100%;
|
| + width: 30px;
|
| + background: salmon;
|
| + }
|
| +</style>
|
| +<body>
|
| + <div class="grid">
|
| +
|
| + <div class="a"></div> 	
|
| + </div>
|
| +</body>
|
| +</html>
|
|
|