Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: PerformanceTests/Bindings/typed-array-construct-from-array.html

Issue 478003002: Fill in descriptions on relevant blink_perf tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: alancutter nits Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: PerformanceTests/Bindings/typed-array-construct-from-array.html
diff --git a/PerformanceTests/Bindings/typed-array-construct-from-array.html b/PerformanceTests/Bindings/typed-array-construct-from-array.html
index 4486dafc359632a9fd7de9269ef003e0e560d15e..436522735971c7824e7abb0ebb4ff29ec0cdfd79 100644
--- a/PerformanceTests/Bindings/typed-array-construct-from-array.html
+++ b/PerformanceTests/Bindings/typed-array-construct-from-array.html
@@ -8,9 +8,11 @@ var source = new Array(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 one million element Array which contains integers beyond the range of an unsigned 8-bit integer.",
+ run: function() {
+ var target = new Uint8Array(source);
+ }
+});
</script>
</body>
-
« no previous file with comments | « PerformanceTests/Bindings/gc-tree.html ('k') | PerformanceTests/Bindings/typed-array-construct-from-same-type.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698