chromium/third_party/blink/web_tests/external/wpt/css/css-scrollbars/scrollbar-color-008-mis-ref.html

<!doctype html>
<html>
<style>
  .container {
    scrollbar-gutter: stable;
    overflow: auto;
    height: 200px;
    min-width: 200px;
    margin: 1px;
    padding: 0px;
    border: none;
    background: deepskyblue;
  }

  .content {
    height: 300px;
    width: 300px;
    background: red;
  }
</style>
<div id="one" class="container">
  <div class="content"></div>
</div>