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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js

Issue 1936773003: DevTools: brush up command menu looks, render badges. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
index 773a775a543d20698c369662f16db4fa5c9dfd65..aa8f35a07f1bdb05b2366aecd4e87eed8c5ed2af 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
+++ b/third_party/WebKit/Source/devtools/front_end/resources/AppManifestView.js
@@ -15,12 +15,12 @@ WebInspector.AppManifestView = function()
this._contentBox = this.contentElement.createChild("div", "app-content-box");
this._contentBox.createChild("div", "app-manifest-title").textContent = WebInspector.UIString("App Manifest");
this._urlElement = this._contentBox.createChild("div", "app-manifest-url link");
+ this._errorsSection = this._createSection(WebInspector.UIString("Errors and warnings"));
+ this._errorsList = this._errorsSection.createChild("div", "app-manifest-errors");
this._identitySection = this._createSection(WebInspector.UIString("Identity"));
this._presentationSection = this._createSection(WebInspector.UIString("Presentation"));
var iconsSection = this._createSection(WebInspector.UIString("Icons"));
this._iconsList = iconsSection.createChild("div", "app-manifest-icons");
- this._errorsSection = this._createSection(WebInspector.UIString("Errors and warnings"));
- this._errorsList = this._errorsSection.createChild("div", "app-manifest-errors");
this._nameField = this._createField(this._identitySection, WebInspector.UIString("Name"));
this._shortNameField = this._createField(this._identitySection, WebInspector.UIString("Short name"));

Powered by Google App Engine
This is Rietveld 408576698