summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css-grid-layout/whitespace-in-grid-item.html
blob: 687b14f80be564a442df7c51755900a9ed7f2a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<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> &#9;
  </div>
</body>
</html>