| Index: PerformanceTests/Bindings/typed-array-construct-from-typed.html
|
| diff --git a/PerformanceTests/Bindings/typed-array-construct-from-typed.html b/PerformanceTests/Bindings/typed-array-construct-from-typed.html
|
| index 0853f6021bc0a51288fa41a0ae364a253b8a2ede..5b179eb2e16ffeb4da0f7338b177e99adfb6d2a4 100644
|
| --- a/PerformanceTests/Bindings/typed-array-construct-from-typed.html
|
| +++ b/PerformanceTests/Bindings/typed-array-construct-from-typed.html
|
| @@ -8,8 +8,11 @@ var source = new Uint8Array(length);
|
| for (var i = 0; i < length; i++)
|
| source[i] = i;
|
|
|
| -PerfTestRunner.measureRunsPerSecond({run: function() {
|
| - var target = new Float64Array(source);
|
| -}});
|
| +PerfTestRunner.measureRunsPerSecond({
|
| + description: "Measures performance of creating a Float64Array from an existing one million element Uint8Array.",
|
| + run: function() {
|
| + var target = new Float64Array(source);
|
| + }
|
| +});
|
| </script>
|
| </body>
|
|
|