mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
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-delay: initial;
|
|
}
|
|
|
|
b {
|
|
animation-delay: inherit;
|
|
}
|
|
|
|
c {
|
|
animation-delay: unset;
|
|
}
|
|
|
|
d {
|
|
animation-delay: 0;
|
|
}
|
|
|
|
e {
|
|
animation-delay: 5ms;
|
|
}
|
|
|
|
f {
|
|
animation-delay: 5ms, 6s;
|
|
}
|