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

Unified Diff: PerformanceTests/Parser/textarea-parsing.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
« no previous file with comments | « PerformanceTests/Parser/simple-url.html ('k') | PerformanceTests/Parser/tiny-innerHTML.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PerformanceTests/Parser/textarea-parsing.html
diff --git a/PerformanceTests/Parser/textarea-parsing.html b/PerformanceTests/Parser/textarea-parsing.html
index ce534ce5e608fbc212d44f21d6156d6789e3e814..f74583f7a8bf60ac004d46ed0f832db4ee361498 100644
--- a/PerformanceTests/Parser/textarea-parsing.html
+++ b/PerformanceTests/Parser/textarea-parsing.html
@@ -20,8 +20,11 @@ for (var i = 0; i < 1000; ++i) {
htmlText += "</textarea>"
var container = document.getElementById('container');
-PerfTestRunner.measureRunsPerSecond({run: function() {
- container.innerHTML = htmlText;
-}});
+PerfTestRunner.measureRunsPerSecond({
+ description: "Measures performance of parsing within a <textarea> tag.",
+ run: function() {
+ container.innerHTML = htmlText;
+ }
+});
</script>
</body>
« no previous file with comments | « PerformanceTests/Parser/simple-url.html ('k') | PerformanceTests/Parser/tiny-innerHTML.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698