chromium/third_party/blink/web_tests/paint/invalidation/scroll/fixed-scroll-viewport-scroll-hidden.html

<!DOCTYPE html>
<link rel="stylesheet" href="../resources/default.css">
<script src="../resources/text-based-repaint.js"></script>
<script>
  function repaintTest() {
    window.scrollTo(0, 100);
  }
</script>
<body style="height:2000px; overflow: hidden" onload="runRepaintAndPixelTest()">
  <div style="top: 200px;" class="absolute red"></div>
  <div style="top: 100px;" class="fixed green"></div>
</body>