chromium/third_party/blink/renderer/core/testing/data/dv-size.html

<!DOCTYPE html>
<html>

<head>
  <style>
    #abs {
      position: absolute;
      left: 0px;
      top: 0px;
      background: silver;
      width: 50dvw;
      height: 50dvh;
    }

    #fixed {
      position: fixed;
      right: 0px;
      top: 0px;
      background: red;
      width: 50dvw;
      height: 50dvh;
    }

    #spacer {
      height: 1000px;
    }
  </style>
<head>

<body>
  <div id="abs"></div>
  <div id="fixed"></div>
  <div id="spacer"></div>
</body>

</html>