| 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 663248dda1cbf3f3cc4d84b9cabf0f46374650c6..5378b7ec2cca503a8308db76d4eaf13134b753a4 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');
|
|
|