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

Unified Diff: PerformanceTests/Bindings/typed-array-construct-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-construct-from-typed.html
diff --git a/PerformanceTests/Bindings/typed-array-construct-from-typed.html b/PerformanceTests/Bindings/typed-array-construct-from-typed.html
index 0853f6021bc0a51288fa41a0ae364a253b8a2ede..5b179eb2e16ffeb4da0f7338b177e99adfb6d2a4 100644
--- a/PerformanceTests/Bindings/typed-array-construct-from-typed.html
+++ b/PerformanceTests/Bindings/typed-array-construct-from-typed.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 Float64Array(source);
-}});
+PerfTestRunner.measureRunsPerSecond({
+ description: "Measures performance of creating a Float64Array from an existing one million element Uint8Array.",
+ run: function() {
+ var target = new Float64Array(source);
+ }
+});
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698