chromium/third_party/blink/web_tests/fast/css/containment/paint-containment-with-fixed-position-scrolled-expected.html

<!DOCTYPE html>
<style>
div {
    width: 100px;
    height: 100px;
}
.box {
    background-color: green;
}
.spacer {
    position:absolute;
    height: 2000px;
}
</style>
<script>
onload = function() {
    window.scrollTo(0, 25);
};
</script>
<body>
<div class="spacer"></div>
<div class="box"></div>