Update web-platform-tests to revision d011702f368b88b3bae86e7a8fd2ddd22e18b33c

This commit is contained in:
Ms2ger 2016-04-12 09:07:41 +02:00
parent f9608022ca
commit 299ad0f9d0
573 changed files with 38776 additions and 14942 deletions

View file

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