wpt / css / css-grid / grid-lanes / column-empty-grid-lanes-container-002.html

Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-grid/grid-lanes/column-empty-grid-lanes-container-002.html

<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="column-empty-grid-lanes-container-002-ref.html">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.grid-lanes {
    display: grid-lanes;
    background: gray;
    position: relative;
    flow-tolerance: 0;
    padding: 20px;
}
</style>
<body>
  <p>Test that an empty grid-lanes container still renders padding.</p>
  <div class="grid-lanes"></div>
</body>
</html>

/css/css-grid/grid-lanes/column-empty-grid-lanes-container-002-ref.html

<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.empty-container {
  display: grid;
  padding: 20px;
  background: gray;
};
</style>
<body>
  <p>Test that an empty grid-lanes container still renders padding.</p>
  <div class="empty-container">
  </div>
</body>
</html>