summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-keyframes-expected.txt
blob: 0b4b280a2c8419ac7f084cff7bfd33eca63890e2 (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
Dumping CSS keyframed animations: 
@keyframes animName {
    0% {
        width: 100px;
    }
    10% {
        width: 150px;
    }
    100% {
        width: 200px;
    }
}
@keyframes mediaAnim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes styleSheetAnim {
    0% {
        color: red;
    }
    100% {
        color: blue;
    }
}