summaryrefslogtreecommitdiff
path: root/testsuite/reftests/label-text-shadow-changes-modify-clip.css
blob: 0a539076e8425dc1d66c14f77fe37d68b22c34d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@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;
}