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

Unified Diff: chrome/test/data/webui/net_internals/hsts_view.js

Issue 103803012: Make HSTS headers not clobber preloaded pins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to comments and fix compilation errors. Created 6 years, 7 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: chrome/test/data/webui/net_internals/hsts_view.js
diff --git a/chrome/test/data/webui/net_internals/hsts_view.js b/chrome/test/data/webui/net_internals/hsts_view.js
index 161908ca8cd62a8386e1e4771f37cd4bc5d83967..fe9adee4f141c176ca3fed97834a34d175061d04 100644
--- a/chrome/test/data/webui/net_internals/hsts_view.js
+++ b/chrome/test/data/webui/net_internals/hsts_view.js
@@ -122,10 +122,10 @@ CheckQueryResultTask.prototype = {
*/
checkSuccess_: function(result) {
expectEquals(QueryResultType.SUCCESS, this.queryResultType_);
- expectEquals(this.stsSubdomains_, result.sts_subdomains);
- expectEquals(this.pkpSubdomains_, result.pkp_subdomains);
- expectLE(this.stsObserved_, result.sts_observed);
- expectLE(this.pkpObserved_, result.pkp_observed);
+ expectEquals(this.stsSubdomains_, result.dynamic_sts_include_subdomains);
+ expectEquals(this.pkpSubdomains_, result.dynamic_pkp_include_subdomains);
+ expectLE(this.stsObserved_, result.dynamic_sts_observed);
+ expectLE(this.pkpObserved_, result.dynamic_pkp_observed);
// |public_key_hashes| is an old synonym for what is now
// |preloaded_spki_hashes|, which in turn is a legacy synonym for

Powered by Google App Engine
This is Rietveld 408576698