Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / PerformanceTests / Bindings / typed-array-set-from-typed.html
index d3090b7..81d8e41 100644 (file)
@@ -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>
-