| Index: chrome/browser/resources/net_internals/hsts_view.js
|
| diff --git a/chrome/browser/resources/net_internals/hsts_view.js b/chrome/browser/resources/net_internals/hsts_view.js
|
| index 69a342a0b14aac2a6e88757dd6fd38b1f8e4ac04..f756276c3e6d0cc5a3f0406f32d36a54eefabd5f 100644
|
| --- a/chrome/browser/resources/net_internals/hsts_view.js
|
| +++ b/chrome/browser/resources/net_internals/hsts_view.js
|
| @@ -131,6 +131,16 @@ var HSTSView = (function() {
|
| t = addNode(this.queryOutputDiv_, 'tt');
|
| t.textContent = result.pkp_subdomains;
|
|
|
| + addTextNode(this.queryOutputDiv_, ' sts_observed:');
|
| +
|
| + t = addNode(this.queryOutputDiv_, 'tt');
|
| + t.textContent = result.sts_observed;
|
| +
|
| + addTextNode(this.queryOutputDiv_, ' pkp_observed:');
|
| +
|
| + t = addNode(this.queryOutputDiv_, 'tt');
|
| + t.textContent = result.pkp_observed;
|
| +
|
| addTextNode(this.queryOutputDiv_, ' domain:');
|
|
|
| t = addNode(this.queryOutputDiv_, 'tt');
|
|
|