| Index: PerformanceTests/Bindings/typed-array-construct-from-same-type.html
|
| diff --git a/PerformanceTests/Bindings/typed-array-construct-from-same-type.html b/PerformanceTests/Bindings/typed-array-construct-from-same-type.html
|
| index 9b90799b6ea7ce207375c77decf78e440b5caed2..60b2042f28a006146dd05979a3a61c73e57042f9 100644
|
| --- a/PerformanceTests/Bindings/typed-array-construct-from-same-type.html
|
| +++ b/PerformanceTests/Bindings/typed-array-construct-from-same-type.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 Uint8Array(source);
|
| -}});
|
| +PerfTestRunner.measureRunsPerSecond({
|
| + description: "Measures performance of creating a Uint8Array from an existing Uint8Array.",
|
| + run: function() {
|
| + var target = new Uint8Array(source);
|
| + }
|
| +});
|
| </script>
|
| </body>
|
|
|