wpt / css / css-grid / grid-lanes / row-empty-grid-lanes-container-content-editable-001.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/row-empty-grid-lanes-container-content-editable-001.html

<!DOCTYPE html>
<html>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="row-empty-grid-lanes-container-content-editable-001-ref.html">
<link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com">
<style>
.empty-container {
  display: grid-lanes;
  grid-template-rows: auto;
}
</style>
<body>
  <p>Test that an empty container that is editable will still have a non-zero block size.</p>
  <div class="empty-container" style="background: gray;" contenteditable="true"></div>
  <div class="empty-container" style="background: gray;" contenteditable="false"></div>
</body>
</html>

/css/css-grid/grid-lanes/row-empty-grid-lanes-container-content-editable-001-ref.html

<!DOCTYPE html>
<html>
<style>
.empty-container {
  display: grid;
  grid-template-rows: auto;
}
</style>
<body>
  <p>Test that an empty container that is editable will still have a non-zero block size.</p>
  <div class="empty-container" style="background: gray;" contenteditable="true"></div>
  <div class="empty-container" style="background: gray;" contenteditable="false"></div>
</body>
</html>