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

Unified Diff: PerformanceTests/Bindings/typed-array-set-from-typed.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-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>
-
« no previous file with comments | « PerformanceTests/Bindings/typed-array-construct-from-typed.html ('k') | PerformanceTests/CSS/AttributeDescendantSelector.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698