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

Unified Diff: LayoutTests/transitions/mismatched-shadow-styles.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/mismatched-shadow-styles.html
diff --git a/LayoutTests/transitions/mismatched-shadow-styles.html b/LayoutTests/transitions/mismatched-shadow-styles.html
index 6fff20972e72d445675575965feba29bdc00153f..976e22bbb0945a8ef9f585cfdeb8feac82d25848 100644
--- a/LayoutTests/transitions/mismatched-shadow-styles.html
+++ b/LayoutTests/transitions/mismatched-shadow-styles.html
@@ -45,10 +45,10 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
// For box-shadow, we test shadow-x and shadow-y to see if it's animating.
- [0.25, 'none-to-normal', 'box-shadow', [10, 10], 1],
- [0.25, 'none-to-inset', 'box-shadow', [10, 10], 1],
- [0.25, 'inset-to-normal', 'box-shadow', [20, 20], 1],
- [0.25, 'normal-to-inset', 'box-shadow', [20, 20], 1],
+ [0.3, 'none-to-normal', 'box-shadow', 'rgba(0, 0, 0, 0.6) 12px 12px 6px 0px', 1],
+ [0.3, 'none-to-inset', 'box-shadow', 'rgba(0, 0, 0, 0.6) 12px 12px 6px 0px inset', 1],
+ [0.3, 'inset-to-normal', 'box-shadow', 'rgb(0, 0, 0) 20px 20px 10px 0px', 1],
+ [0.3, 'normal-to-inset', 'box-shadow', 'rgb(0, 0, 0) 20px 20px 10px 0px inset', 1],
];
function setupTest()

Powered by Google App Engine
This is Rietveld 408576698