gtk2/testsuite/reftests/box-shadow-changes-modify-clip.css
2016-03-03 16:14:39 -08:00

20 lines
345 B
CSS

@import "reset-to-defaults.css";
@keyframes foo {
0% { box-shadow: 20px 20px tomato; }
100% { box-shadow: 20px 20px tomato; }
}
label {
font-size: 40px;
animation-name: foo;
animation-duration: 100s;
animation-timing-function: linear;
animation-delay: 1ms;
}
.reference {
animation: initial;
box-shadow: 20px 20px tomato;
}