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

Unified Diff: third_party/WebKit/LayoutTests/transitions/svg-transitions.html

Issue 2680923005: Refactor CSS Transitions to use CSSInterpolationTypes instead of AnimatableValues (Closed)
Patch Set: Fix transition tests to not expect incorrect behaviour Created 3 years, 10 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/transitions/svg-transitions.html
diff --git a/third_party/WebKit/LayoutTests/transitions/svg-transitions.html b/third_party/WebKit/LayoutTests/transitions/svg-transitions.html
index f5f6afb51a74e67839c9a8a810e5095233f5677d..c277445c03a24fb1681ccc5cf93a1c57b49d8111 100644
--- a/third_party/WebKit/LayoutTests/transitions/svg-transitions.html
+++ b/third_party/WebKit/LayoutTests/transitions/svg-transitions.html
@@ -140,11 +140,11 @@
[1, "rect2", "stroke-dasharray", [15, 15], 1], // (10, 10) -> (20, 20)
[1, "rect4", "stroke-width", 8, 0.5], // 1px to 4mm (~15.1px)
[1, "rect5", "stroke-width", 5, 1], // 0 to 10px
- [1, "rect5", "stroke-dasharray", [10, 10], 1], // (0, 0) -> (20, 20)
+ [1, "rect5", "stroke-dasharray", 20, 1], // none -> 20
[1, "rect6", "stroke-width", 15, 2], // 10% to 20%
[1, "rect6", "stroke-dasharray", [15, 15, 20, 12.5, 17.5, 17.5], 1], // (10, 15, 20, 15, 20, 15) -> (10, 15, 20, 10, 15, 20)
[1, "rect7", "fill", [0, 0, 127], 20], // url(#invalid) black -> url(#invalid) blue
- [1, "rect7", "stroke-dasharray", [10, 10], 1], // (20, 20) -> (0, 0)
+ [1, "rect7", "stroke-dasharray", 'none', 1], // 20 -> none
[1, "stop1", "stop-color", [127, 127, 0], 20], // rgb(255,0,0) -> rgb(0, 255, 0)
[1, "stop1", "stop-opacity", 0.75, 0.1], // 1 -> 0.5
[1, "polyline1", "stroke-miterlimit", 11, 0.5], // 12 -> 10 (this is an abrupt change in rendering even though the property animation is smooth)

Powered by Google App Engine
This is Rietveld 408576698