forked from AuroraMiddleware/gtk
ef71eabfc5
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.
20 lines
222 B
CSS
20 lines
222 B
CSS
a {
|
|
animation-play-state: initial;
|
|
}
|
|
|
|
b {
|
|
animation-play-state: inherit;
|
|
}
|
|
|
|
c {
|
|
animation-play-state: unset;
|
|
}
|
|
|
|
d {
|
|
animation-play-state: running;
|
|
}
|
|
|
|
e {
|
|
animation-play-state: running, paused, running, paused;
|
|
}
|