chromium/third_party/blink/web_tests/external/wpt/css/css-transforms/scrollable-scroll-3d-transform-z.html

<!DOCTYPE html>
<link rel="author" title="Seokho Song"  href="mailto:[email protected]">
<link rel="help" href="https://www.w3.org/TR/css-transforms-2/#3d-transform-rendering/">
<link rel="match" href="scrollable-scroll-3d-transform-z-ref.html">
<style>
#container {
  width: 100px;
  height: 100px;
  background: green;
  position: relative;
  transform-style: preserve-3d;
}
#scroller {
  width: 100px;
  height: 100px;
  background: red;
  position: absolute;
  transform: translateZ(-1px);
  overflow-y: scroll;
}
</style>
<div id="container">
  <div id="scroller">
    <div style="height: 300px"></div>
  </div>
</div>