1
0
Fork 0
firefox/testing/web-platform/tests/css/css-grid/grid-items/whitespace-in-grid-item-001-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
451 B
HTML

<!DOCTYPE html>
<html>
<link href="/css/support/grid.css" rel="stylesheet">
<style>
.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>