* Speedometer/resources/main.js:
(startBenchmark):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@221045
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2017-08-22 Ryosuke Niwa <rniwa@webkit.org>
+ Commit the change meant to be included in the previous commit.
+
+ * Speedometer/resources/main.js:
+ (startBenchmark):
+
+2017-08-22 Ryosuke Niwa <rniwa@webkit.org>
+
Speedometer 2.0: Make it possible to change the iteration count via query string
https://bugs.webkit.org/show_bug.cgi?id=175811
break;
case 'iterationCount':
var parsedValue = parseInt(value);
- if (!isNaN(value))
+ if (!isNaN(parsedValue))
benchmarkClient.iterationCount = parsedValue;
else
console.error('Invalid iteration count: ' + value);