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

Unified Diff: third_party/WebKit/LayoutTests/animations/interpolation/border-image-width-interpolation.html

Issue 2027933002: Allow transitions on background-size with positionally matched keywords (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Inline is required 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/border-image-width-interpolation.html
diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/border-image-width-interpolation.html b/third_party/WebKit/LayoutTests/animations/interpolation/border-image-width-interpolation.html
index 1dc7d25891ca9666ef69b1af3a7ed73fc4ad3dd3..956857881615d407544a7a33aa1176d42c2a513d 100644
--- a/third_party/WebKit/LayoutTests/animations/interpolation/border-image-width-interpolation.html
+++ b/third_party/WebKit/LayoutTests/animations/interpolation/border-image-width-interpolation.html
@@ -142,11 +142,19 @@ assertInterpolation({
{at: 1.5, is: 'calc(-5px + 30%)'}, // Should be parsed as -5px + 36px = 31px
]);
-assertNoInterpolation({
+assertInterpolation({
property: 'border-image-width',
from: '10px auto auto 20',
to: '110px auto auto 120'
-});
+}, [
+ {at: -0.3, is: ' 0px auto auto 0'},
+ {at: 0, is: ' 10px auto auto 20'},
+ {at: 0.3, is: ' 40px auto auto 50'},
+ {at: 0.6, is: ' 70px auto auto 80'},
+ {at: 1, is: '110px auto auto 120'},
+ {at: 1.5, is: '160px auto auto 170'},
+]);
+
assertNoInterpolation({
property: 'border-image-width',
from: '10px auto auto 20',

Powered by Google App Engine
This is Rietveld 408576698