chromium/third_party/blink/web_tests/external/wpt/css/css-sizing/table-child-percentage-height-with-border-box-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Test if percentage height of table's child element with box-sizing: border-box is calculated correctly</title>
<link rel="help" href="https://drafts.csswg.org/css-sizing/#box-sizing">
<style>
  html {
    height: 100%;
    width: 100%;
  }
  body {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  .content {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: red;
  }
  .wrapper {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: green;
    padding-top: 100px;
  }
</style>
<body>
  <div class="content">
    <div class="wrapper">
      wrapped content (height: 100%)
    </div>
  </div>
</body>