| 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()
|
| {
|
|
|