gtk2/testsuite/css/parser/animation-name.css
Matthias Clasen ef71eabfc5 Add parser tests for animation properties
This adds tests for animation-name, animation-duration,
animation-timing-function, animation-iteration-count,
animation-direction, animation-play-state, animation-delay
and animation-fill-mode.
2015-12-22 22:29:38 -05:00

24 lines
197 B
CSS

a {
animation-name: initial;
}
b {
animation-name: inherit;
}
c {
animation-name: unset;
}
d {
animation-name: none;
}
e {
animation-name: bob;
}
f {
animation-name: bob, alice;
}