Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: third_party/WebKit/LayoutTests/animations/interpolation/svg-ry-interpolation.html

Issue 2019993003: Set "auto" as default for rx and ry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added CSS Parsing Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/animations/interpolation/svg-ry-interpolation.html
diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/svg-ry-interpolation.html b/third_party/WebKit/LayoutTests/animations/interpolation/svg-ry-interpolation.html
index 791424ed8a4ffce60ceb04b82f40f86ade1a61c4..17d2fa9f1789de6fff1c115c2db236fd37567df1 100644
--- a/third_party/WebKit/LayoutTests/animations/interpolation/svg-ry-interpolation.html
+++ b/third_party/WebKit/LayoutTests/animations/interpolation/svg-ry-interpolation.html
@@ -36,18 +36,11 @@ assertInterpolation({
{at: 1.5, is: '25px'},
]);
-assertInterpolation({
+assertNoInterpolation({
property: 'ry',
from: 'initial',
to: '20px',
-}, [
- {at: -0.3, is: '0px'},
- {at: 0, is: '0px'},
- {at: 0.3, is: '6px'},
- {at: 0.6, is: '12px'},
- {at: 1, is: '20px'},
- {at: 1.5, is: '30px'},
-]);
+});
assertInterpolation({
property: 'ry',
@@ -62,18 +55,11 @@ assertInterpolation({
{at: 1.5, is: '15px'},
]);
-assertInterpolation({
+assertNoInterpolation({
property: 'ry',
from: 'unset',
to: '20px',
-}, [
- {at: -0.3, is: '0px'},
- {at: 0, is: '0px'},
- {at: 0.3, is: '6px'},
- {at: 0.6, is: '12px'},
- {at: 1, is: '20px'},
- {at: 1.5, is: '30px'},
-]);
+});
assertInterpolation({
property: 'ry',

Powered by Google App Engine
This is Rietveld 408576698