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

Unified Diff: LayoutTests/transitions/multiple-shadow-transitions.html

Issue 716963002: Remove property-specific handling in animation-test-helpers.js (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@animhelpercleanup
Patch Set: rm whitespace Created 6 years, 1 month 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: LayoutTests/transitions/multiple-shadow-transitions.html
diff --git a/LayoutTests/transitions/multiple-shadow-transitions.html b/LayoutTests/transitions/multiple-shadow-transitions.html
index 89f48aaf427f00998903b19553e28c636c4bee43..1237ccacf00ac0d5bbabb96f7fdd29ddc5266a62 100644
--- a/LayoutTests/transitions/multiple-shadow-transitions.html
+++ b/LayoutTests/transitions/multiple-shadow-transitions.html
@@ -53,9 +53,9 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [0.5, 'box', 'box-shadow', [0, 0, 0, 0], 4],
- [0.5, 'box2', 'box-shadow', [0, -20, 0, 10], 4],
- [0.5, 'box3', 'box-shadow', [0, 0, 0, 10], 4],
+ [0.5, 'box', 'box-shadow', 'rgb(255, 0, 0) 0px 0px 10px 0px, rgb(0, 0, 255) 0px 0px 10px 0px', 4],
+ [0.5, 'box2', 'box-shadow', 'rgb(255, 0, 0) 0px -20px 10px 0px, rgba(0, 0, 255, 0.5) 0px 10px 5px 0px', 4],
+ [0.5, 'box3', 'box-shadow', 'rgb(128, 0, 128) 0px 0px 10px 0px, rgba(0, 0, 255, 0.5) 0px 10px 5px 0px', 4],
];
function setupTest()

Powered by Google App Engine
This is Rietveld 408576698