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

Unified Diff: chrome/browser/resources/extensions/extension_error.js

Issue 1284803004: Remove a superfluous <li> wrapper on chrome://extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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 | « chrome/browser/resources/extensions/extension_error.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/extensions/extension_error.js
diff --git a/chrome/browser/resources/extensions/extension_error.js b/chrome/browser/resources/extensions/extension_error.js
index ef117c15dd1d84c19e04e21ea810ee3926b673b4..ab66f77d3fbd6103118dcd364738a65378a631fe 100644
--- a/chrome/browser/resources/extensions/extension_error.js
+++ b/chrome/browser/resources/extensions/extension_error.js
@@ -229,8 +229,7 @@ cr.define('extensions', function() {
this.querySelector('#no-errors-span').hidden = true;
this.errors_.push(error);
var focusRow = new ExtensionError(error, this.listContents_);
- this.listContents_.appendChild(document.createElement('li')).
- appendChild(focusRow);
+ this.listContents_.appendChild(focusRow);
this.focusGrid_.addRow(focusRow);
},
« no previous file with comments | « chrome/browser/resources/extensions/extension_error.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698