Skip to content

Commit 78f70fd

Browse files
graoutsgsnedders
authored andcommitted
Revert "Reland web-platform-tests#2 "Implement CSSTransitionDiscrete which enables transitions on discrete properties.""
This reverts commit 268250b.
1 parent 35ae832 commit 78f70fd

File tree

4 files changed

+7
-86
lines changed

4 files changed

+7
-86
lines changed

css/css-transitions/all-with-discrete.tentative.html

-51
This file was deleted.

css/css-transitions/display-none-no-animations.html

-28
This file was deleted.

css/motion/animation/offset-interpolation.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
to: 'path("M0 300H 700 Z") 600px 900deg',
1616
method: 'CSS Transitions',
1717
}, [
18-
{at: -0.3, expect: 'path("M0 200H 700") 470px 770deg'},
19-
{at: 0, expect: 'path("M0 200H 700") 500px 800deg'},
20-
{at: 0.3, expect: 'path("M0 200H 700") 530px 830deg'},
18+
{at: -0.3, expect: 'path("M0 300H 700 Z") 470px 770deg'},
19+
{at: 0, expect: 'path("M0 300H 700 Z") 500px 800deg'},
20+
{at: 0.3, expect: 'path("M0 300H 700 Z") 530px 830deg'},
2121
{at: 0.6, expect: 'path("M0 300H 700 Z") 560px 860deg'},
2222
{at: 1, expect: 'path("M0 300H 700 Z") 600px 900deg'},
2323
{at: 1.5, expect: 'path("M0 300H 700 Z") 650px 950deg'},
@@ -29,9 +29,9 @@
2929
to: 'path("M0 0H 300") 600px 0deg',
3030
method: 'CSS Transitions',
3131
}, [
32-
{at: -0.3, expect: 'path("M0 0H 170") 470px auto 0deg'},
33-
{at: 0, expect: 'path("M0 0H 200") 500px auto 0deg'},
34-
{at: 0.3, expect: 'path("M0 0H 230") 530px auto 0deg'},
32+
{at: -0.3, expect: 'path("M0 0H 170") 470px 0deg'},
33+
{at: 0, expect: 'path("M0 0H 200") 500px 0deg'},
34+
{at: 0.3, expect: 'path("M0 0H 230") 530px 0deg'},
3535
{at: 0.6, expect: 'path("M0 0H 260") 560px 0deg'},
3636
{at: 1, expect: 'path("M0 0H 300") 600px 0deg'},
3737
{at: 1.5, expect: 'path("M0 0H 350") 650px 0deg'},

css/support/interpolation-testcommon.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
target.style.setProperty(property, isNeutralKeyframe(from) ? '' : from);
5757
},
5858
nonInterpolationExpectations: function(from, to) {
59-
return expectFlip(from, to, 0.5);
59+
return expectFlip(from, to, -Infinity);
6060
},
6161
notAnimatableExpectations: function(from, to, underlying) {
6262
return expectFlip(from, to, -Infinity);

0 commit comments

Comments
 (0)