| 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"));
|
|
|