gtk/testsuite/css/parser/animation-duration.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
216 B
CSS

a {
animation-duration: initial;
}
b {
animation-duration: inherit;
}
c {
animation-duration: unset;
}
d {
animation-duration: 0s;
}
e {
animation-duration: 5ms;
}
f {
animation-duration: 5ms, 6s;
}