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

Unified Diff: LayoutTests/animations/change-transform-style-during-animation.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/animations/change-transform-style-during-animation.html
diff --git a/LayoutTests/animations/change-transform-style-during-animation.html b/LayoutTests/animations/change-transform-style-during-animation.html
index d4b17f249fc21bd54e755feeebfa08ef5ef8397f..d0f5d9ed3ad2bb81e91fd48c6d4f48afe11fb95e 100644
--- a/LayoutTests/animations/change-transform-style-during-animation.html
+++ b/LayoutTests/animations/change-transform-style-during-animation.html
@@ -45,9 +45,9 @@
{
var animated = document.getElementById('animated');
var result;
- var expected = [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -200, 0, 200, 1];
+ var expected = "matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -200, 0, 200, 1)";
var computed = getPropertyValue("webkitTransform", "animated");
- if (comparePropertyValue("webkitTransform", computed, expected, 0.002)) {
+ if (comparePropertyValue(computed, expected, 0.002)) {
result = "PASS - Computed final position is correct.";
} else {
result = "FAIL - Computed final position is incorrect. Expected " + expected + ", got " + computed;
« no previous file with comments | « LayoutTests/animations/big-rotation-expected.txt ('k') | LayoutTests/animations/combo-transform-rotate+scale.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698