chromium/third_party/blink/web_tests/compositing/background-color/background-color-alpha-with-opacity.html

<html>
    <head>
        <style type="text/css">
            .green {
                width: 100px;
                height: 100px;
                background-color: rgba(0, 128, 0, 0.5);
                opacity: 0.5;
                display: block;
            }
            .blue {
                width: 100px;
                height: 100px;
                background-color: rgba(0, 0, 128, 0.5);
                opacity: 0.5;
                display: block;
                transform: translate(50px, 50px);
            }

            .composited {
                -webkit-transform-style: preserve-3d;
            }
        </style>
    </head>
    <body>
        <div class="green composited">
            <div class="blue composited">
            </div>
        </div>
    </body>
</html>