chromium/third_party/blink/web_tests/css3/blending/background-blend-mode-separate-layer-declaration.html

<!DOCTYPE HTML>
<html>
<head>
    <style>
        div  {
            width: 100px;
            height: 100px;
            background-color: green;
            background-image: url('resources/ducky.jpg');
            background-blend-mode: multiply;
        }
    </style>
</head>
<!-- Test whether blend mode applies when specifying the background layers separately, using both background-image and background-color -->
<body>
    <div></div>
</body>
</html>