chromium/third_party/blink/web_tests/compositing/fixed-background-negative-z-index-fixed-expected.html

<!DOCTYPE html>

<html>
<head>
    <style>
        body {
            height: 2000px;
            background-image: url('resources/simple_image.png');
            background-size: 200px 200px;
            overflow: hidden; /* hide scrollbar */
        }
        .fixed {
            position: absolute;
            top: 50px;
            left: 50px;
            width: 200px;
            height: 200px;
            background-color: silver;
        }
    </style>
</head>
<body>

    <div class="fixed"></div>

</body>
</html>