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.
24 lines
197 B
CSS
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;
|
|
}
|