chromium/third_party/blink/web_tests/external/wpt/css/css-scroll-snap/crashtests/fractional-covering-area-crash.html

<!DOCTYPE HTML>
<html>
<style>
  #container {
    scroll-snap-type: both mandatory;
    overflow: overlay;
    position: absolute;
    height: 33554400px;
    width: 33554400px;
  }

  #area {
    scroll-snap-align: end;
    position: absolute;
    left: 33554400px;
    top: -57971.9px;
    width: 0px;
    height: 33554400px;
  }
</style>
<div id="container">
  <div id="area"></div>
</div>

</html>