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

Unified Diff: tracing/tracing/ui/extras/about_tracing/record_selection_dialog_test.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: rebase Created 3 years, 9 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: tracing/tracing/ui/extras/about_tracing/record_selection_dialog_test.html
diff --git a/tracing/tracing/ui/extras/about_tracing/record_selection_dialog_test.html b/tracing/tracing/ui/extras/about_tracing/record_selection_dialog_test.html
index 7dfc4e0a7cf86d1529b3599cc85e07cbfe5908eb..092386bc39c46fe612f4ac59d426f8725f5da1ef 100644
--- a/tracing/tracing/ui/extras/about_tracing/record_selection_dialog_test.html
+++ b/tracing/tracing/ui/extras/about_tracing/record_selection_dialog_test.html
@@ -22,10 +22,12 @@ tr.b.unittest.testSuite(function() {
e.stopPropagation();
var categories = [];
- for (var i = 0; i < 30; i++)
+ for (var i = 0; i < 30; i++) {
categories.push('cat-' + i);
- for (var i = 0; i < 20; i++)
+ }
+ for (var i = 0; i < 20; i++) {
categories.push('disabled-by-default-cat-' + i);
+ }
categories.push(
'really-really-really-really-really-really-very-loong-cat');
categories.push('first,second,third');

Powered by Google App Engine
This is Rietveld 408576698