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

Unified Diff: LayoutTests/animations/animation-direction-reverse-fill-mode.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/animation-direction-reverse-fill-mode.html
diff --git a/LayoutTests/animations/animation-direction-reverse-fill-mode.html b/LayoutTests/animations/animation-direction-reverse-fill-mode.html
index 9d2a73fe86adfbdbbe614d66f8843ae17fdee225..78ec69169d08147cc3adf52d017f78901afa5fd7 100644
--- a/LayoutTests/animations/animation-direction-reverse-fill-mode.html
+++ b/LayoutTests/animations/animation-direction-reverse-fill-mode.html
@@ -53,12 +53,12 @@
var animsFinished = 0;
const allowance = 5;
const expectedValues = [
- {id: "none", start: 100, end: 100},
- {id: "backwards", start: 300, end: 100},
- {id: "forwards", start: 100, end: 200},
- {id: "both", start: 300, end: 200},
- {id: "both_iterating", start: 200, end: 200},
- {id: "both_iterating_reverse", start: 300, end: 300}
+ {id: "none", start: "100px", end: "100px"},
+ {id: "backwards", start: "300px", end: "100px"},
+ {id: "forwards", start: "100px", end: "200px"},
+ {id: "both", start: "300px", end: "200px"},
+ {id: "both_iterating", start: "200px", end: "200px"},
+ {id: "both_iterating_reverse", start: "300px", end: "300px"}
];
var result = "";
@@ -79,7 +79,7 @@
for (var i = 0; i < expectedValues.length; i++) {
var realValue = getPropertyValue("left", expectedValues[i].id);
var expectedValue = expectedValues[i].end;
- if (comparePropertyValue("left", realValue, expectedValue, allowance))
+ if (comparePropertyValue(realValue, expectedValue, allowance))
result += "PASS";
else
result += "FAIL";
@@ -95,7 +95,7 @@
for (var i = 0; i < expectedValues.length; i++) {
var realValue = getPropertyValue("left", expectedValues[i].id);
var expectedValue = expectedValues[i].start;
- if (comparePropertyValue("left", realValue, expectedValue, allowance))
+ if (comparePropertyValue(realValue, expectedValue, allowance))
result += "PASS";
else
result += "FAIL";

Powered by Google App Engine
This is Rietveld 408576698