| Index: PerformanceTests/Bindings/typed-array-set-from-typed.html
|
| diff --git a/PerformanceTests/Bindings/typed-array-set-from-typed.html b/PerformanceTests/Bindings/typed-array-set-from-typed.html
|
| index d3090b7df0da3fb960b55059100d98194e8e570d..81d8e41801c808e7c17f6197049f115efb33e21d 100644
|
| --- a/PerformanceTests/Bindings/typed-array-set-from-typed.html
|
| +++ b/PerformanceTests/Bindings/typed-array-set-from-typed.html
|
| @@ -9,9 +9,11 @@ for (var i = 0; i < length; i++)
|
| source[i] = i;
|
| var target = new Float64Array(length);
|
|
|
| -PerfTestRunner.measureRunsPerSecond({run: function() {
|
| - target.set(source);
|
| -}});
|
| +PerfTestRunner.measureRunsPerSecond({
|
| + description: "Measures performance of setting a Float64Array to a Uint8Array using Float64Array.prototype.set.",
|
| + run: function() {
|
| + target.set(source);
|
| + }
|
| +});
|
| </script>
|
| </body>
|
| -
|
|
|