summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/compositing/mix-blend-mode/reference/mix-blend-mode-animation-ref.html
blob: 1dc65d81312628b51820a9662f201a449d0daba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
    <head>
        <title>CSS Test: Blended element with animation</title>
        <link rel="author" title="Mihai Tica" href="mailto:mitica@adobe.com">
        <style type="text/css">
            div {
                width: 100px;
                height: 100px;
                background: #FF0;
            }

            @keyframes changeOpacity
            {
                from { opacity: 0.9; }
                50% { opacity: 0.9; }
                to { opacity: 0.1; }
            }

            #blender {
                background: #0F0;
                animation: changeOpacity 10s;
            }
        </style>
    </head>
    <body>
        <p>Test passes if you can see a fading green box after 5 seconds.</p>
        <div><div id="blender"></div></div>
    </body>
</html>