layout/reftests/border-radius/scroll-1.html
author Dave Townsend <dtownsend@oxymoronical.com>
Mon, 14 Jul 2025 14:08:24 +0000 (11 hours ago)
changeset 796524 2ef57d67fd0616c054a8e385c6b76d6342e81f75
parent 60023 b6286cc2817a01b74f6812a17f14c63631dbb9f5
permissions -rw-r--r--
Bug 1975002: Ensure we fully decode images before trying to use them in the Dock or Taskbar. r=profiles-reviewers,niklas Differential Revision: https://phabricator.services.mozilla.com/D256996
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function scrollTo(v) {
  var d = document.getElementById("d");
  d.scrollTop = v;
  if (v < 100) {
    setTimeout(function() { scrollTo(v + 50); }, 400);
  } else {
    document.documentElement.removeAttribute("class");
  }
}
</script>
</head>
<body onload="scrollTo(0)">
<div style="border-radius:100px; width:300px; height:300px; overflow:hidden;" id="d">
  <div style="height:1000px;">
    <div style="margin-top:100px; height:20px; background:blue;"></div>
  </div>
</div>
</body>
</html>