chromium/third_party/blink/web_tests/external/wpt/css/compositing/mix-blend-mode/reference/mix-blend-mode-paragraph-ref.html

<!DOCTYPE html>
<html>
    <head>
        <title>CSS Test: Paragraph element with mix-blend-mode.</title>
        <link rel="author" title="Mihai Tica" href="mailto:[email protected]">
        <meta name="assert" content="Test checks that test a paragraph element blends with the parent element.">
        <style type="text/css">
            div {
                width: 100px;
                height: 100px;
                background: #FF0;
            }

            #blender {
                color: #0F0;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the paragraph text is drawn with green.</p>
        <div>
            <p id="blender">This should be drawn with green.</p>
        </div>
    </body>
</html>