Skip to content

Commit ef493bc

Browse files
committed
added a failing spec for animation localisation
1 parent 6997eef commit ef493bc

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
._animations_source__fader {
2+
animation: _animations_source__fade-in 1s;
3+
}
4+
5+
@keyframes _animations_source__fade-in {
6+
0% { opacity: 0; }
7+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"fader": "_animations_source__fader"
3+
}

test/test-cases/animations/source.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.fader {
2+
animation: fade-in 1s;
3+
}
4+
5+
@keyframes fade-in {
6+
0% { opacity: 0; }
7+
}
8+

0 commit comments

Comments
 (0)