testing/web-platform/tests/css/css-masking/clip-path/clip-path-on-fixed-position-scroll-ref.html
Bug 1976623 - Create drag popups eagerly for now. r=tnikkel,layout-reviewers
Trivially restores pre-regression behavior, for now.
Differential Revision:
https://phabricator.services.mozilla.com/D256769
<!DOCTYPE html>
<style>
.ref {
height: 100px;
width: 100px;
background: green;
}
</style>
<div style="height: 800px"></div>
<div class="ref"></div>
<script>
onload = () => {
window.scrollTo(0, 800);
};
</script>