forked from AuroraMiddleware/gtk
8f44383253
This adds tests for transition-property, transition-delay and transition-timing-function.
28 lines
235 B
CSS
28 lines
235 B
CSS
a {
|
|
transition-delay: initial;
|
|
}
|
|
|
|
b {
|
|
transition-delay: inherit;
|
|
}
|
|
|
|
c {
|
|
transition-delay: unset;
|
|
}
|
|
|
|
d {
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
e {
|
|
transition-delay: 5s;
|
|
}
|
|
|
|
f {
|
|
transition-delay: 5ms;
|
|
}
|
|
|
|
g {
|
|
transition-delay: 5ms, 5s;
|
|
}
|