https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a8e88604a838f836dcfc64eec51c61a17305e917 authored by Mike on 05 April 2018, 10:57:56 UTC
Tests were referencing the wrong reference tests
Tip revision: a8e8860
box-tree-unregistered-ref.html
<!DOCTYPE html>
<style>
.container {
  margin: 20px 0;
  border: solid 2px;
  width: 100px;
}

.inflow {
  height: 40px;
}
</style>

<div class="container">
  <div class="inflow"></div>
  <div class="inflow" style="background: hotpink"></div>
  <div class="inflow"></div>
</div>

<div class="container">
  <div class="inflow"></div>
  <div class="inflow" style="background: hotpink"></div>
  <div class="inflow"></div>
</div>

<div class="container">
  <div class="inflow" style="background: hotpink"></div>
  <div class="inflow" style="background: green"></div>
</div>
back to top