https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7b34dc7dc9f2ff8fbcf3445709fa7e517f2c6fb4 authored by Domenic Denicola on 06 April 2018, 22:15:02 UTC
WIP tests for text/css link quirk
Tip revision: 7b34dc7
percentage-heights-002-ref.html
<!DOCTYPE html>
<link rel="author" title="Google Inc." href="http://www.google.com/">
<style>
body {
  position: relative;
  width: 800px;
  height: 600px;
}

#container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#top-bar {
  background-color: green;
  height: 100px;
}

#content {
  background-color: blue;
  height: 500px;
}
</style>


<div id="container">
  <div id="top-bar">
  Tests that percentage heights get resolved correctly when the flexbox is
  </div>
  <div id="content">
  absolutely positioned without an explicit height. You should see no red.
  </div>
</div>


back to top