layout/reftests/async-scrolling/position-fixed-body-ref.html
author Lando <lando@lando.test>
Fri, 11 Jul 2025 04:32:24 +0000 (76 minutes ago)
changeset 796014 f14d1c1492bc6791542a001365abbca4bd9b28db
parent 538781 e326e1e4155df133fdddb8dd25e787af1294dcb1
permissions -rw-r--r--
Merge autoland to mozilla-central
<!DOCTYPE html>
<html reftest-async-scroll>
<style>
body {
  height: 100vh;
  margin: 0px;
}
#scrollbox {
  width: 100%;
  height: 100%;
  overflow: scroll;
  scrollbar-width: none;
}
#scrolledContents {
  height: 10000px;
  background: radial-gradient(circle, blue 30%, transparent 0);
  background-size: 80px 80px;
}
</style>
<body>
  <div id="scrollbox"
       reftest-dislayport-x="0" reftest-displayport-y="0"
       reftest-displayport-w="800" reftest-displayport-h="2000"
       reftest-async-scroll-x="0" reftest-async-scroll-y="20">
    <div id="scrolledContents"></div>
  </div>
</body>
</html>