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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/web-animations/keyframe-effect/getComputedTiming.html

Issue 1899623002: Import latest web-platform-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: handle new failures Created 4 years, 8 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/imported/web-platform-tests/web-animations/keyframe-effect/getComputedTiming.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/web-animations/keyframe-effect/getComputedTiming.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/web-animations/keyframe-effect/getComputedTiming.html
index 5f4c602b04aea6afebe1b0779cd58eca17d952d3..5641b20ac4cc8889546e1083f2824d5dcf869630 100644
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/web-animations/keyframe-effect/getComputedTiming.html
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/web-animations/keyframe-effect/getComputedTiming.html
@@ -62,15 +62,6 @@ var gGetComputedTimingTests = [
{ desc: "an Infinity iterations",
input: { iterations: Infinity },
expected: { iterations: Infinity } },
- { desc: "a negative Infinity iterations",
- input: { iterations: -Infinity},
- expected: { iterations: 1 } },
- { desc: "a NaN iterations",
- input: { iterations: NaN },
- expected: { iterations: 1 } },
- { desc: "a negative iterations",
- input: { iterations: -1 },
- expected: { iterations: 1 } },
{ desc: "an auto fill",
input: { fill: "auto" },
expected: { fill: "none" } },
@@ -152,10 +143,7 @@ var gActiveDurationTests = [
expected: Infinity },
{ desc: "an infinite duration and zero iteration count",
input: { duration: Infinity, iterations: 0 },
- expected: 0 },
- { desc: "a non-zero duration and invalid iteration count",
- input: { duration: 1000, iterations: "cabbage" },
- expected: 1000 }
+ expected: 0 }
];
gActiveDurationTests.forEach(function(stest) {

Powered by Google App Engine
This is Rietveld 408576698