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

Unified Diff: third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js

Issue 1942523002: DevTools: render parsed manifest data in the resources panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed 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/security/SecurityPanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
index 82dbe3b343057331222e4bd7dd7199ece3ad1a68..88ac526a25fbab280fea04785b85e17679376941 100644
--- a/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js
@@ -741,14 +741,14 @@ WebInspector.SecurityOriginView = function(panel, origin, originState)
this.registerRequiredCSS("security/originView.css");
this.registerRequiredCSS("security/lockIcon.css");
- var titleSection = this.element.createChild("div", "origin-view-section title-section");
+ var titleSection = this.element.createChild("div", "title-section");
titleSection.createChild("div", "origin-view-title").textContent = WebInspector.UIString("Origin");
var originDisplay = titleSection.createChild("div", "origin-display");
this._originLockIcon = originDisplay.createChild("span", "security-property");
this._originLockIcon.classList.add("security-property-" + originState.securityState);
// TODO(lgarron): Highlight the origin scheme. https://crbug.com/523589
originDisplay.createChild("span", "origin").textContent = origin;
- var originNetworkLink = originDisplay.createChild("div", "link");
+ var originNetworkLink = titleSection.createChild("div", "link");
originNetworkLink.textContent = WebInspector.UIString("View requests in Network Panel");
function showOriginRequestsInNetworkPanel()
{

Powered by Google App Engine
This is Rietveld 408576698