Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/grid-items/whitespace-in-grid-item-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>CSS Grid : Whitespace in grid item</title>
<link rel="author" title="Christian Biesinger" href="mailto:cbiesinger@chromium.org">
<link rel="match" href="whitespace-in-grid-item-001-ref.html">
<meta name="assert" content="Grid items shouldn't be created for white spaces."/>
<link href="/css/support/grid.css" rel="stylesheet">
<style>
.grid {
white-space: pre;
}
.item {
height: 100%;
width: 30px;
background: salmon;
}
</style>
<body>
<p>This test passes if it has the same output than the reference. As spec states that child text runs containing only white space should not rendered (just as if its text nodes were display:none).</p>
<div class="grid">
<div class="item"></div> 	
</div>
</body>
</html>