gtk/testsuite/reftests/label-text-shadow-changes-modify-clip.css
Matthias Clasen 339cb1fe6b Fix reftests
Multiple reftests were damaged by the element name transition.
Repair them. The region reftests are no longer needed, since
we no longer do regions.
2015-10-27 20:06:24 -04:00

20 lines
348 B
CSS

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