diff --git a/css/css-transitions/all-with-discrete.tentative.html b/css/css-transitions/all-with-discrete.tentative.html new file mode 100644 index 00000000000000..f12c14e4c55285 --- /dev/null +++ b/css/css-transitions/all-with-discrete.tentative.html @@ -0,0 +1,51 @@ + + + + + + +
hello
+
hello
+ + + + diff --git a/css/css-transitions/display-none-no-animations.html b/css/css-transitions/display-none-no-animations.html new file mode 100644 index 00000000000000..32535baf9c7b1a --- /dev/null +++ b/css/css-transitions/display-none-no-animations.html @@ -0,0 +1,28 @@ + + + + + +
target
+ + + diff --git a/css/motion/animation/offset-interpolation.html b/css/motion/animation/offset-interpolation.html index 2ee011bd77a975..9c3747185dc830 100644 --- a/css/motion/animation/offset-interpolation.html +++ b/css/motion/animation/offset-interpolation.html @@ -15,9 +15,9 @@ to: 'path("M0 300H 700 Z") 600px 900deg', method: 'CSS Transitions', }, [ - {at: -0.3, expect: 'path("M0 300H 700 Z") 470px 770deg'}, - {at: 0, expect: 'path("M0 300H 700 Z") 500px 800deg'}, - {at: 0.3, expect: 'path("M0 300H 700 Z") 530px 830deg'}, + {at: -0.3, expect: 'path("M0 200H 700") 470px 770deg'}, + {at: 0, expect: 'path("M0 200H 700") 500px 800deg'}, + {at: 0.3, expect: 'path("M0 200H 700") 530px 830deg'}, {at: 0.6, expect: 'path("M0 300H 700 Z") 560px 860deg'}, {at: 1, expect: 'path("M0 300H 700 Z") 600px 900deg'}, {at: 1.5, expect: 'path("M0 300H 700 Z") 650px 950deg'}, @@ -29,9 +29,9 @@ to: 'path("M0 0H 300") 600px 0deg', method: 'CSS Transitions', }, [ - {at: -0.3, expect: 'path("M0 0H 170") 470px 0deg'}, - {at: 0, expect: 'path("M0 0H 200") 500px 0deg'}, - {at: 0.3, expect: 'path("M0 0H 230") 530px 0deg'}, + {at: -0.3, expect: 'path("M0 0H 170") 470px auto 0deg'}, + {at: 0, expect: 'path("M0 0H 200") 500px auto 0deg'}, + {at: 0.3, expect: 'path("M0 0H 230") 530px auto 0deg'}, {at: 0.6, expect: 'path("M0 0H 260") 560px 0deg'}, {at: 1, expect: 'path("M0 0H 300") 600px 0deg'}, {at: 1.5, expect: 'path("M0 0H 350") 650px 0deg'}, diff --git a/css/support/interpolation-testcommon.js b/css/support/interpolation-testcommon.js index aa8239ae928654..283a2d8aaba888 100644 --- a/css/support/interpolation-testcommon.js +++ b/css/support/interpolation-testcommon.js @@ -56,7 +56,7 @@ target.style.setProperty(property, isNeutralKeyframe(from) ? '' : from); }, nonInterpolationExpectations: function(from, to) { - return expectFlip(from, to, -Infinity); + return expectFlip(from, to, 0.5); }, notAnimatableExpectations: function(from, to, underlying) { return expectFlip(from, to, -Infinity);