https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4f05c011be2ef38886088a09748b90dd2476d40f authored by Mugdha Lakhani on 18 October 2018, 15:50:21 UTC
[Background Fetch] Support access to active fetches.
Tip revision: 4f05c01
auto-block-size-flex-ref.html
<!DOCTYPE html>
<style>
.container {
  border: solid 2px;
  display: flow-root;
  width: 300px;
}

.child {
  background: green;
  border: solid 2px;
  box-sizing: border-box;
  float: left;
  height: 100px;
}
</style>

<div class="container">
  <div class="child" style="width: 100px;"></div>
  <div class="child" style="width: 200px;"></div>
</div>
back to top