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) { |