chromium/third_party/blink/web_tests/scrollbars/scrollbar-position-crash.html

<!doctype html>
<style>
#abschild {
  position: absolute;
}
#text {
  overflow: auto;
  will-change: transform;
  display: inline-block;
  -webkit-column-count: 60000;
  border: 6px solid black;
  padding-top: 60000px;
  zoom: 0.5;
  font-size: 500px;
}
</style>
<!-- crbug.com/764399: This test passes if it does not crash under msan. -->
PA<span id='text'>S<span id='abschild'>S</span></span>
<script>
  if (testRunner)
    testRunner.dumpAsText();
</script>